Answer: See below.
Step-by-step explanation:
user_tickets = int(input("How many tickets do you want to buy? "))
if user_tickets < 5:
num_tickets = 1
else:
num_tickets = user_tickets
print("You have {} tickets".format(num_tickets))
8.8m questions
11.4m answers