python coding practice variable names code example
Example 1: python code style
This python pep sums it up: https://www.python.org/dev/peps/pep-0008/
Example 2: python naming script
# Function gets name from user
def get_name():
print("Hello what is your name?")
name = input("My name is: ")
print("Hello ", name)
return name