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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!