Question: Python Programming: You will use a new variable prize to store a prize name if one was won, and then use the truth value of
Python Programming: You will use a new variable prize to store a prize name if one was won, and then use the truth value of this variable to compose the result message. This will involve two if statements. 1st conditional statement: update prize to the correct prize name based on points. 2nd conditional statement: set result to the correct phrase based on whether prize is evaluated as True or False. If prize is None, result should be set to "Oh dear, no prize this time." If prize contains a prize name, result should be set to "Congratulations! You won a {}!".format(prize). This will avoid having the multiple result assignments for different prizes. At the beginning of your code, set prize to None, as the default value. points = 174 # use this as input for your submission # establish the default prize value to None # use the points value to assign prizes to the correct prize names # use the truth value of prize to assign result to the correct prize print(result) Python Programming
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
