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

nicolaspeterson
8,569 PointsDifference between number_of_tickets and num_tickets?
Can someone quickly explain what the difference is between these two? Why is the former set as the parameter of the function calculate_price when the variable we store and pass in later on is num_tickets? It's a bit confusing...
1 Answer

Steven Parker
242,030 PointsWhile num_tickets
is a program variable, number_of_tickets
is just a function parameter name that acts as a placeholder for the actual value that will be supplied when the function is used.
Parameter names can be anything, but it is considered a "best practice" to use a name that suggests what kind of contents the parameter will hold.

N K
375 PointsCould we make them the same (like both num_tickets) or would that mess up the code?

Steven Parker
242,030 PointsTechnically, you can use the same name for both things, but it not recommended as it can be confusing for someone working on the code (even for you, if you go back to it at a later date). It also causes a side effect known as "shadowing", making the global variable not accessible from within the function where it otherwise would be.
freddie
2,762 Pointsfreddie
2,762 Pointsdef price_calculation(varible_number_defined_by_user): return varible_number_defined_by_user * TICKET_PRICE + SERVICE_CHARGE
it might help