We use if-else structure to check if user_tickets is not equal to 6.
If that is the case, the if part gets executed. Otherwise, the else part of the program gets executed.
Comments are used to explain each line of the code.
You may see the output in the attachment.
#ask the user to enter user_tickets
user_tickets = int(input())
'''
check if the user_tickets not equal to 6
if it is not equal to 6, set the award_points as 10.
otherwise, set the award_points as user_tickets
'''
if user_tickets != 6:
award_points = 10
else:
award_points = user_tickets
#print the award_points
print(award_points)
You may see a similar question at:
https://brainly.com/question/14851610