Python中format()
时间: 2024-04-25 19:20:25 浏览: 88
format在python中的用法.rar
Python中的format()函数是用于格式化字符串的函数。它可以根据指定的格式将不同类型的数据转换为字符串,并进行格式化输出[^1]。
下面是format()函数的使用示例:
```python
print(format(1234567,"b") + "|end") # 二进制
print(format(1234567,"o") + "|end") # 八进制
print(format(1234567,"d") + "|end") # 十进制
print(format(1234567,"n") + "|end") # 千位分隔符
print(format(1234567,"x") + "|end") # 十六进制
print(format(1234567,"X") + "|end") # 十六进制(大写)
print(format(4567,"c") + "|end") # 打印Unicode字符
```
运行结果为:
```
100101101011010000111|end
4553207|end
1234567|end
1,234,567|end
12d687|end
12D687|end
ᇗ|end
```
format()函数的第一个参数是要格式化的数据,第二个参数是格式化的方式。具体的格式化方式可以是以下几种:
- "x":十六进制
- "X":十六进制(大写)
- "c":打印Unicode字符
通过format()函数,我们可以根据需要将数据以不同的格式进行输出。
阅读全文