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))
5.7m questions
7.4m answers