num=3.14*1.257 print(num) round(num,2)
你先打印了值,后用了函数。
试试这样:
num=3.14*1.257
num=
3.14
*
1.257
print(round(num,2))
print(
round(num,
2
))