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 trial

Python Python Basics All Together Now Gather Information

hi, my code won't run,it display unexpected EOF while parsing message

TICKET_PRICE = 10

tickets_remaining = 100

output how many tickets are remaining using the ticket_remaining variable

print( "There are {} tickest remaining." .format (tickets_remaining))

Gather the user's name and assign it to a 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 the price) and assign it a variable

amount_due =num_tickets * TICKET_PRICE

output the price to the screen

print("The total due is ${}" .format(amount_due)

1 Answer

You are missing a closing parenthesis on this line:

print("The total due is ${}".format(amount_due))

thanks a lot Kris!