python 中format函数
时间: 2024-01-08 11:21:35 浏览: 75
python中format使用
format函数是Python中用于格式化字符串的函数。它可以接受不限个参数,并且位置可以不按顺序。下面是几个示例:
1. 不设置参数,按默认顺序:
```python
print("{} {}".format("hello", "world")) # 输出:hello world
print("{0} {1}".format("hello", "world")) # 输出:hello world
print("{1} {0} {1}".format("hello", "world")) # 输出:world hello world
```
2. 设置参数:
```python
print("{f} {l}".format(f="hello", l="world")) # 输出:hello world
site = {"f": "hello", "l": "world"}
print("{f} {l}".format(**site)) # 输出:hello world
my_list = ['hello', 'world']
print("{0[0]} {0[1]}".format(my_list)) # 输出:hello world
```
3. 数字格式化:
```python
print("{:.2f}".format(3.1415926)) # 输出:3.14
```
阅读全文