Define a function named check_game_finished (encrypted_list) which takes a list of characters as a parameter. The functi
Posted: Tue May 24, 2022 8:21 am
Define a function named get_word (words_list) that takes a list of words as a parameter. The function returns a random word from the parameter words list. Note: Do not import the random module. This has been done for you as part of the CodeRunner question. For example: Test Result random.seed (30) a data = get_word(['this', 'is', 'a', 'test']) print (data) random.seed (50) data = ['icy', 'any', 'are', 'hot', 'why'] print(get_word (data)) hot