问答详情
源自:3-3 Python的整数与浮点数
为什么这个运行后没有结果,代码没有错误
num1 = 3.14 num2 = 1.57 result = round(num1*num2,2) print(result)
提问者:Prime_svSU37
2024-11-29 11:05
个回答
尼古拉斯李铁蛋
2024-11-29 11:38:00
你的代码我试了,能运行。结果是
4.93
0