python camelcase code example
Example 1: camel case in python
>>> "they're bill's friends from the UK".title()
"They'Re Bill'S Friends From The Uk"
Example 2: python code style
This python pep sums it up: https://www.python.org/dev/peps/pep-0008/
Example 3: pep8
# pep8 Style Guide for Lists
my_list = [
1, 2, 3,
4, 5, 6,
]
result = some_function_that_takes_arguments(
'a', 'b', 'c',
'd', 'e', 'f',
)