xxxxxxxxxx
# dividing two numbers in python is done using '/' and '//' operators
5 / 2 = 2.5
# using double forward slash results and integer if the answer is float
5 // 2 = 2
xxxxxxxxxx
# always returns float
>>>5/5
1.0
>>>10/2
5.0
>>>-10/2
-5.0
>>>20.0/2
10.0