Python Division

print(12//5)
# output round number
#2

print(12/5)
# output float number
#2.4
Maximilian Steiger