Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

***How do I insert the Halloween text into this and write the program**** Topics: List, tuple In this lab, you will write a scrambled word

***How do I insert the Halloween text into this and write the program****

Topics: List, tuple

In this lab, you will write a scrambled word game. The game starts by loading a file containing scrambled word-answer pair separated. Sample of the file content is shown below. Once the pairs are loaded, it randomly picks a scrambled word and has the player guess it. The number of guesses is unlimited. When the user guesses the correct answer, it asks the user if he/she wants another scrambled word.

bta:bat gstoh:ghost entsrom:monster

Download scrambled.py and halloween.txt from blackboard under labs/lab5. The file scrambled.py already has the print_banner and the load_words functions. The function print_banner simply prints scrambled banner. The function load_words load the list of scrambled words-answer pairs from the file and return a tuple of two lists. The first list is the scrambled words and the second is the list of the answers. Your job is the complete the main function so that the game works as shown in the sample run.

Optional Challenge: The allowed number of guess is equal to the length of the word. Print hints such as based on the number of guess. If its the first guess, provides no hint. If its the second guess, provides the first letter of the answer. If its the third guess, provides the first and second letter of the correct answer. Also, make sure the same word is not select twice. Once all words have been used, the game should tell user that all words have been used and terminate.

Sample run:

__ _ _ _ / _\ ___ _ __ __ _ _ __ ___ | |__ | | ___ __| | \ \ / __|| '__|/ _` || '_ ` _ \ | '_ \ | | / _ \ / _` | _\ \| (__ | | | (_| || | | | | || |_) || || __/| (_| | \__/ \___||_| \__,_||_| |_| |_||_.__/ |_| \___| \__,_|

Scrambled word is: wbe What is the word? bee Wrong answer. Try again! Scrambled word is: wbe What is the word? web You got it! Another game? (Y/N):Y Scrambled word is: meizob What is the word? Zombie You got it! Another game? (Y/N):N Bye!

Provided code:

def display_banner(): print(""" __ _ _ _ / _\ ___ _ __ __ _ _ __ ___ | |__ | | ___ __| | \ \ / __|| '__|/ _` || '_ ` _ \ | '_ \ | | / _ \ / _` | _\ \| (__ | | | (_| || | | | | || |_) || || __/| (_| | \__/ \___||_| \__,_||_| |_| |_||_.__/ |_| \___| \__,_|

""")

def load_words(filename): #load file containing scrambled word-answer pairs. #scrambled word and answer are sparated by :

scrambled_list = [] answer_list = []

with open(filename, 'r') as f: for line in f: (s,a) = line.strip().split(":") scrambled_list += [s] answer_list += [a] return (scrambled_list, answer_list)

def main(): display_banner() (scrambled_list, answer_list) = load_words('halloween.txt') #your code to make the game work.

main()

Halloween.txt file.

bta:bat gstoh:ghost entsrom:monster ihtcw:witch meizob:zombie enetskol:skeleton rpamevi:vampire wbe:web isdepr:spider umymm:mummy rboom:broom nhlwaeeol:Halloween pkiumnp:pumpkin kaoa jlern tcn:jack o lantern tha:hat claabck t:black cat omno:moon aurdclno:caluldron

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions