标签: python python-3.6
使用%-formatting,我可以指定字符串中的小数个案数:
let cardTemp = { anotherCard with Cost = 4 } let card = { cardTemp with WinPoints = 5 }
这会给我:
x = 3.14159265 print('pi = %0.2f' %x)
有没有办法在Python 3.6中使用f-strings执行此操作?
答案 0 :(得分:42)
这个怎么样
x = 3.14159265 print(f'pi = {x:.2f}')
Docs for f-strings