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 Write Better Python Cleaner Code PEP 8

Nathan McElwain
Nathan McElwain
4,575 Points

Why not camelCase?

It was my understanding that it was a stylistic choice, and not so much a PEP8 no-no.

3 Answers

Sue Dough
Sue Dough
35,800 Points

Function names should be lowercase, with words separated by underscores as necessary to improve readability in python.

Source - http://stackoverflow.com/questions/159720/what-is-the-naming-convention-in-python-for-variable-and-function-names

ghost code - You are absolutely right!

Kenneth Love
STAFF
Kenneth Love
Treehouse Guest Teacher

You can, of course, use whatever naming convention you want. PEP 008 just suggests using snake_case for variable names because it makes them very visually distinct from the CamelCased class names.

I agree, because it does make it easier to read the code.

CamelCase is the naming convention that can be used for variable as well as file names. CamelCase can be used instead of the underscore naming convention. An example of camelCase would be MyFakeFile and underscore would be my_fake_file.