Python-first-Practice
Python-first-Practice copied to clipboard
浮点数的精度的example 有一处错误 小数点 误写为星号
trafficstars
print (round (3*1415 , 2)) # result 3. 14
应该是print (round (3.1415 , 2)) # result 3. 14