使用%-formatting,我可以指定字符串中的小数个案数:
x = 3.14159265 print('pi = %0.2f' %x)
这会给我:
pi = 3.14
有没有办法在Python 3.6中使用f-strings这样做?
python python-3.6
python ×1
python-3.6 ×1