python 小数用百分比表示,写法
时间: 2023-02-27 12:47:05 浏览: 199
python分数表示方式和写法
可以使用格式化字符串或者 format 函数将小数转换为百分比表示。例如:
```
x = 0.25
# 方法 1: 使用格式化字符串
print("{:.2%}".format(x))
# 方法 2: 使用 format 函数
print("{:.2%}".format(x))
```
输出结果:
```
25.00%
25.00%
```
阅读全文