为什么round保留小数没有用
a=3.14
b=1.57
S=a*b
print(round(S,2))
请把你的源代码发出来,不然谁知道怎么错的
>>>x=3.14
>>> y=1.57
>>> round(x*y,2)#