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 Cleaner Code Through Refactoring

Difference 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...

def price_calculation(varible_number_defined_by_user): return varible_number_defined_by_user * TICKET_PRICE + SERVICE_CHARGE

it might help

1 Answer

Steven Parker
Steven Parker
230,946 Points

While 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.