print(12//5)
# output round number
#2
print(12/5)
# output float number
#2.4
5//2 in python will return an integer value 2.
// <- this symbol denotes the integer division any values after the decimal will be ignored.
/ <- this returns normal mathamatical division including decimal values.
So, 5/2 = 2.5.
#/ is the division symbol in Python, so:
print(12 / 3)
#output: 4