Python Variable Names - camelCase
Camel Case
Variable names with more than one word can be difficult to read.
camelCase
Use camel case to make long variable names more readable.
ExampleGet your own Python Server
Each word, except the first, starts with a capital letter:
myVariableName = "John"
Try it Yourself »