python —— float转int时四舍五入

简单方法实现四舍五入

f1=3.49
f2=3.51
r1=int(f1+0.5)
r2=int(f2+0.5)

你可能感兴趣的:(编程,Python)