标签: python-3.x
如何在Python3中以.?
.
>>> print('{:6}\n{:6}'.format(2, 46)) 2 46 >>> print('{:.2f}\n{:.2f}'.format(2.34985, 82.23132)) 2.35 82.23
答案 0 :(得分:0)
与整数相同。
print('{:6.2f}\n{:6.2f}'.format(2.34985, 82.23132)) 2.35 82.23