130k views
5 votes
Develop a program that ask for the number of tickets

User Laquinta
by
7.1k points

1 Answer

4 votes

Answer:

# Ask user for the number of tickets

num_tickets = input("How many tickets would you like to purchase? ")

# Convert the user input to an integer

num_tickets = int(num_tickets)

# Set the price per ticket

PRICE_PER_TICKET = 10

# Calculate the total cost

total_cost = num_tickets * PRICE_PER_TICKET

# Print the number of tickets and total cost to the user

print("You want to purchase " + str(num_tickets) + " tickets, and the total cost is $" + str(total_cost) + ".")

User Nitin Pawar
by
8.2k points