pathon中怎么输出浮点数
时间: 2024-05-06 17:20:25 浏览: 164
python中精确输出JSON浮点数的方法
在Python中,可以通过以下方式输出浮点数:
1. 使用print函数输出
```python
x = 3.14159
print(x)
```
2. 使用字符串格式化输出
```python
x = 3.14159
print("The value of x is {:.2f}".format(x))
```
其中,`{:.2f}`表示要输出的浮点数保留两位小数。
阅读全文