>>> a = 1
>>> b = 3
>>> print(a/b)
0
>>> #方法一:
... print(round(a/b,2))
0.0
>>> #方法二:
... print(format(float(a)/float(b),'.2f'))
0.33
>>> #方法三:
... print ('%.2f' %(a/b))
0.00
>>> 

 

相关文章:

  • 2021-11-05
  • 2022-12-23
  • 2021-11-14
  • 2022-01-02
猜你喜欢
  • 2022-12-23
  • 2021-10-19
  • 2022-12-23
相关资源
相似解决方案