Python-first-Practice icon indicating copy to clipboard operation
Python-first-Practice copied to clipboard

浮点数的精度的example 有一处错误 小数点 误写为星号

Open mklsw opened this issue 7 years ago • 0 comments

print (round (3*1415 , 2)) # result 3. 14

应该是print (round (3.1415 , 2)) # result 3. 14

mklsw avatar Aug 16 '18 03:08 mklsw