python计算百分百
时间: 2023-06-28 09:07:31 浏览: 149
Python如何计算语句执行时间
5星 · 资源好评率100%
计算百分比可以使用以下公式:
百分比 = (部分值 / 总值) × 100%
在 Python 中,可以使用以下代码计算百分比:
```python
part = 20
total = 100
percentage = (part / total) * 100
print(percentage)
```
这将输出 `20.0`,表示 20%。
阅读全文