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 trialdevin blair
4,955 PointsInvalid Syntax on Gather information step?
I'm getting an invalid syntax error on the name = var and I'm not sure why name = input("what is your name? ")
Moving it to the top of the page just produces a syntax error in the requested_tickets var.
TICKET_PRICE = 10
tickets_remaining = 100
print("There are {} tickets remaining.".format(tickets_remaining)
name = input("what is your name? ")
requested_tickets = input("how many tickets do you need? ")
requested_tickets = int(requested_tickets)
amount_due = requested_tickets * TICKET_PRICE
print("Your total for %s tickets is $%s " % (requested_tickets, amount_due))
1 Answer
jb30
44,806 PointsThe line print("There are {} tickets remaining.".format(tickets_remaining)
has two (
and one )
. Try adding another )
at the end of the line.