python3 format 浮点数
时间: 2024-01-23 19:45:45 浏览: 98
浮点数存储格式
要在Python 3中格式化浮点数,可以使用以下语法:
```python
format(value, format_spec)
```
其中,value是要格式化的浮点数,format_spec是一个字符串,用于指定格式。以下是一些常用的格式规范:
- `{:.2f}`:将浮点数保留两位小数
- `{:+.2f}`:将浮点数保留两位小数,并在正数前面加上一个加号
- `{:.0f}`:将浮点数四舍五入到最接近的整数
- `{:,}`:在浮点数的整数部分添加逗号
例如:
```python
x = 3.14159265359
print("{:.2f}".format(x)) # 输出 3.14
print("{:+.2f}".format(x)) # 输出 +3.14
print("{:.0f}".format(x)) # 输出 3
print("{:,}".format(1000000)) # 输出 1,000,000
```
还可以使用f字符串来格式化浮点数,例如:
```python
x = 3.14159265359
print(f"{x:.2f}") # 输出 3.14
```
阅读全文