Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialKeaton Adams
Courses Plus Student 449 PointsSyntax Error line 10?
TICKET_PRICE = 10
tickets_remaining = 100
Output how many tickets are remaining using the tickets_remaining variable
print("There are {} tickets remaining.".format(tickets_remaining)
gather the user's name and assign it to a new variable
name = input("What is your name? ")
Prompt the user by name and ask how many tickets they would like
num_tickets = input("How many tickets would you like, {}? ".format(name)) num_tickets = int(num_tickets)
calculate the price (number of tickets multiplied by price) and assign it to a variable
amount_due = num_tickets * TICKET_PRICE
Output the price to the screen
print("The total due is ${}".format(amount_due))
# Prompt user if they want to proceed. Y/N ?
# if they want to proceed
#print out to to the screen "SOLD!" to confirm purchase
# and then decrements the tickets remaining by the number of tickets purchased
# Otherwise....
1 Answer
KRIS NIKOLAISEN
54,971 PointsYou are missing a closing parenthesis on the line above
print("There are {} tickets remaining.".format(tickets_remaining)