Naming Conventions - Python Indentifiers
When you are giving a name to a variable, function, class or basically anything that you're designating in Python (like lives, score, etc), make sure you follow these rules:
and
exec
not
assert
finally
or
break
for
pass
class
from
continue
global
raise
def
if
return
del
import
try
elif
in
while
else
is
with
except
lambda
yield
Comments
Comments are used to talk to people reading your code.
You will use it for things like:
To make a comment, start the code with a hashtag #