class name in python camel case? code example
Example 1: camelcase naming convention python
# CamelCase is the way you are meant to name classes:
class ExampleClass(self):
pass
# Start each word with a capital
# Don't seperate words with underscores
Example 2: camel case in python
>>> "they're bill's friends from the UK".title()
"They'Re Bill'S Friends From The Uk"