MurphyWan/Python-first-Practice

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

mklsw opened this issue · 0 comments

mklsw commented

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

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