
Write a python
1. Randomly selects a word from a pre-set list: kangaroo, capybara, wombat, koala, wallaby, quokka, platypus, dingo, kookaburra
hint: modify you function from problem 2
2. Prompts the user to guess a letter
3. Validates the input
4. If the letter is not in the word, print a message reflecting this
5. Prints the word where all guessed letters are revealed and all unguessed letters are replaced by underscores
hint: consider storing the guessed letters in a list
6. The program should continuously prompt the user to guess letters until they enter ‘quit’ or all the letters in the word have been guessed
7. Don’t forget to include the main guard
Be sure to split functionality into functions where appropriate. Some possible ideas for functions:
● checks if input is valid
● randomly selects a word from a list
● prints out the word with appropriate underscores
● checks if the user has won the game
Example: # The program selects the word quokka, but the user does not know
Guess a letter: a
_____a Guess a letter: e
there is no ‘e’
_____a Guess a letter: k
___kka Guess a letter: u
_u_kka Guess a letter: o
_uokka Guess a letter: q quokka
You win! Good job!

Trending nowThis is a popular solution!
Step by stepSolved in 4 steps with 2 images

- C Language - Write a program that takes a date as input and outputs the date's season in the northern hemisphere. The input is a string to represent the month and an int to represent the day.arrow_forwardIn C write a simple scientific calculator program as follows:Display a menu of options according to table.Ask the user to enter a menu option (upper and lower case will work).If menu option is not valid, display msg “invalid option” and repeat parts 1 and 2. (use do-while)For “add” option ask the user to enter two numbers, store as double and display sum.For subtract option ask the user to enter two numbers, store as double and display difference.For multiply option, same as above.For divide option, same as above (test the denominator, if zero, display an appropriate msg).For squared, ask the user to input a number and output the square of the number.For square root, check if the number is negative and output appropriate msg, otherwise, output solution.For factorial, ask for a number an output factorial ( 5! = 5*4*3*2*1). (use for loop)For absolute value, output the absolute value of a given number.For greater integer, round the number to an integer greater than number.For leap year,…arrow_forwardC-Language The goal of this problem is to find the smallest integer in a list of numbers. To help you with this task, please write a function called min() that finds and returns the smallest amongst two integers (be sure to also write a prototype for this function). The function thus takes two integers as input and returns the smallest of the two. This function will use an if statement with a condition that contains either "less than" or "greater than". Next, please use min() in your main function to work your way through an entire list of numbers in order to find its minimum. The first number you read gives the number of elements in the list of integers under consideration. You will then read the integer values, using min() to keep only the smallest integer read at each step. In the end, please print out the smallest integer in the list. Example Input 104 3 6 2 6 8 9 8 5 4 Output 2arrow_forward
- please code in python Write a program that removes all spaces from the given input. Ex: If the input is: Hello my name is John. the output is: HellomynameisJohn. also test on: remove_spaces("This is a sentence.") remove_spaces("Look! Multiple spaces.")arrow_forwardHow to solve 6.24 lab: count characters in pythonarrow_forward: Write a python program to simulate an online store. The program should begin by displaying a list of products and their prices. There should be a minimum of 4 products offered. The program should ask the user to choose a product and then ask the user to enter the quantity they require of that product. The program should then allow the user to keep choosing more products and quantities until they enter something to indicate they want to end the program (e.g. a given number or ‘q’ or ‘exit’). The program should then tell the user the total amount for the products they have selected.arrow_forward
- Questio Write a program that receives a series of characters from the user, the program stops if the user enters the same character two consecutive times, the program should display the number of entered characters at the end of the program (the last duplicated character is counted only once): Sample Run: Enter your characters: a sbnmkrr we got 7 characters please wirte it in java using loops please answer it in java using netbeans.arrow_forwardCode in Pythonarrow_forwardpython please explain so i understandarrow_forward
- PYTHON PROGRAMMINGarrow_forwardString: abcdefghijklmnopqrstuvwxyzyxwvutsr qponmlkjihgfedcba Make a program that: reads a letter from standard input print the above string up to this letter For example, if the letter was c, the output would be: abcba Must use a function and Pythonarrow_forward***IN PSUEDOCODE ONLY - not a real programming language!!*** Question:A prime number is a number that is only evenly divisible by itself and 1. For example, the number 5 is prime because it can only be evenly divided by 1 and 5. The number 6, however, is not prime because it can be divided evenly by 1, 2, 3, and 6. Design a Boolean function called isPrime, that accepts an integer as an argument and returns True if the argument is a prime number, or False otherwise. Use the function in a program that prompts the user to enter a number and then displays a message indicating whether the number is prime. The following modules should be written: - getNumber, that accepts a Ref to an integer, prompts the user to enter a number, and accepts that input - isPrime, that accepts an integer as an argument and returns True if the argument is a prime number, or False otherwise - showPrime, that accepts an integer as an argument , calls isPrime, and displays a message indicating whether the…arrow_forward
- Computer Networking: A Top-Down Approach (7th Edi...Computer EngineeringISBN:9780133594140Author:James Kurose, Keith RossPublisher:PEARSONComputer Organization and Design MIPS Edition, Fi...Computer EngineeringISBN:9780124077263Author:David A. Patterson, John L. HennessyPublisher:Elsevier ScienceNetwork+ Guide to Networks (MindTap Course List)Computer EngineeringISBN:9781337569330Author:Jill West, Tamara Dean, Jean AndrewsPublisher:Cengage Learning
- Concepts of Database ManagementComputer EngineeringISBN:9781337093422Author:Joy L. Starks, Philip J. Pratt, Mary Z. LastPublisher:Cengage LearningPrelude to ProgrammingComputer EngineeringISBN:9780133750423Author:VENIT, StewartPublisher:Pearson EducationSc Business Data Communications and Networking, T...Computer EngineeringISBN:9781119368830Author:FITZGERALDPublisher:WILEY





