圆形浮子用f弦

时间:2017-09-05 19:31:28

标签: 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执行此操作?

1 个答案:

答案 0 :(得分:42)

这个怎么样

x = 3.14159265
print(f'pi = {x:.2f}')

Docs for f-strings