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

ValueError: invalid literal for int() with base 10: 'num_tickets'

i keep getting this error everytime i assign num_tickets the int

users_name = input("What is your name? ") num_tickets = input("How many tickets do you want {}? ".format(users_name))

num_tickets = int (num_tickets)

total_price = TICKET_PRICE * num_tickets

print("Your price is {}".format(total_price))

1 Answer

Ken Stone
Ken Stone
29,703 Points

I'm not seeing the error you are. I added TICKET_PRICE and put the assignment of num_tickets on a new line.

TICKET_PRICE = 9.99
users_name = input("What is your name? ") 
num_tickets = input("How many tickets do you want {}? ".format(users_name))

num_tickets = int (num_tickets)

total_price = TICKET_PRICE * num_tickets

print("Your price is {}".format(total_price))