Rules for initialising a variable

Using 
Symbols
Only 
the 
underscore 
(_) 
symbol 
can 
be 
used 
while 
naming 
variables.
Case 
sensitivity
Python 
treats 
capital 
letters 
and 
small 
letters 
as 
different 
characters.
Python 
variable 
names 
are 
case-sensitive 
(for 
eg. 
old, 
Old 
and 
OLD 
are 
three 
different 
variables)
Using 
numbers
Variable 
names 
cannot 
begin 
with 
a 
number. 
Variable 
name 
must 
start 
with 
a 
letter 
or 
the 
underscore 
character.
player_name="Theo"
print(player_names)
Player="Theo"
player="Zog"
print(Player)
print(player)
2player="Zog"

Comments

It 
is 
a 
good 
habit 
to 
write 
comments 
for 
your 
code.
Comments 
begin 
with 
a 
#
 
symbol.
Comments 
help 
you 
structure 
your 
code 
in 
a 
better 
format 
and 
make 
it 
readable 
for 
others 
who 
would 
use 
your 
code.
After 
all, 
there 
is 
a 
popular 
saying, 
"Anyone 
can 
write 
code 
that 
a 
computer 
can 
understand. 
Good 
programmers 
write 
code 
that 
humans 
can 
understand.”
#insert comments here