Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Iain Crawford
Courses Plus Student 396 PointsAssigning an integer within the code
Could you not have just assigned the integer within the code like this?
number_of_tickets = int(input("Welcome {}, how many tickets would you like? ".format(name)))
What would be wrong with this?
1 Answer

Steven Parker
221,476 PointsThis code looks perfectly fine. You didn't mention what you are comparing it to, but it's very common for there to be more than one way to accomplish a particular programming task. The one shown in the course is usually chosen to clearly indicate a specific concept and likely will not be the only (or even most efficient) solution possible.