pythonformat函数返回值
时间: 2023-07-25 08:13:41 浏览: 205
python中format使用
Python的`format()`函数是用于格式化字符串的内置函数,它可以将一个或多个值插入到字符串中。`format()`函数的返回值是格式化后的字符串。如果要将格式化后的字符串打印出来,需要使用`print()`函数。例如:
```
name = "Alice"
age = 25
print("My name is {}, and I am {} years old.".format(name, age))
```
输出结果为:
```
My name is Alice, and I am 25 years old.
```
阅读全文