首页题库练习题目详情
Python程序设计单选题中等

以下哪项是f-string中格式化数字的正确写法?

Af'Price: {price}'
Bf'Price: {price:.2f}'
Cf'Price: {price:0.2f}'
D以上都是