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 Handle Exceptions

Rama Isaac
seal-mask
.a{fill-rule:evenodd;}techdegree
Rama Isaac
Web Development Techdegree Student 486 Points

Question: is there a reason that num_tickets variable doesn't include int?

Couldn't we just type num_tickets = int((input("How many tickets you would like to purchase?"))

Is there a reason we are creating a separate code line to coerce the int?

1 Answer

Chris Freeman
MOD
Chris Freeman
Treehouse Moderator 68,423 Points

Hey Rama Isaac, good question.

It certainly would be acceptable to put the input() statement within an int() statement.

One reason to break it into two steps is if you are treating the string version differently than the integer version. If you print out the integer version it would have to be converted back to a string for the print.

It may also help readability by only putting the statements that might raise an error within the try block.

Post back if you need more help. Good luck!!!