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

Argument titles

Can argument names be customization, like do i have to have it called pronoun or name, is there a list of these names, if so where can i find it... and if not then what are the restrictions for customization argument names

1 Answer

Steven Parker
Steven Parker
231,275 Points

A variable (or argument) name can be anything made up of letters, numbers, and underscores, as long as it does not start with a number, and it cannot be a Python reserved word (like "import" or "for").

thank you