-Maybe there is no function to display the decimal point in Python. ・ Maybe the method is different between 2 system and 3 system ・ This is about 2 system
Pi = 3.14
print Pi / 1
print Pi //1
print Pi - Pi//1
3.14
3.0
0.14
Recommended Posts