79.0k views
2 votes
Write an if-else statement for the following:

If user_tickets is less than 5, assign 1 to num_tickets. Else, assign user_tickets to num_tickets.

1 Answer

4 votes

In python 3.8:

if user_tickets < 5:

num_tickets = 1

else:

num_tickets = user_tickets

For this code to work properly, you'll have to first declare user_tickets before the if-else statements.

User Anuruddhika
by
7.8k points