Python Variable Names - PascalCase
Pascal Case
Variable names with more than one word can be difficult to read.
PascalCase
Use pascal case to make long variable names more readable.
ExampleGet your own Python Server
Each word starts with a capital letter:
MyVariableName = "John"
Try it Yourself »