python 有关round的问题

2024-12-15 20:32:29
推荐回答(2个)
回答1:

输出时在外层做一下类型转换,比如
print(int(candyTemperature(r,e)))

或者在输出时指定显示字符格式。

print('数值为整数:{:.f}'.format(candyTemperature(r,e)))

回答2:

python2 中,round返回 float
python3中,round返回 int 或 float
详细请按命令 help(round)