Question: Write an if-else statement for the following: If user_tickets is not equal to 6, execute award_points = 10. Else, execute award_points = user_tickets. Ex: If
Write an if-else statement for the following: If user_tickets is not equal to 6, execute award_points = 10. Else, execute award_points = user_tickets. Ex: If user_tickets is 14, then award_points = 10.
......... Write code below.........
user_tickets = int(input()) # Program will be tested with values: 6, 7, 8, 9.
print(award_points)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
