Python 中的format函数可以用来做什么
时间: 2024-05-02 17:20:44 浏览: 75
python中format函数如何使用
5星 · 资源好评率100%
ChitGPT: Python中的format函数可以用来格式化字符串,将占位符替换为具体的值,例如:
```python
name = "Alice"
age = 25
print("My name is {}, and I'm {} years old".format(name, age))
```
输出结果为:
```python
My name is Alice, and I'm 25 years old
```
除了基本的字符串格式化外,还可以使用format函数进行数字、日期等类型的格式化。
阅读全文