print.format
时间: 2023-07-06 21:36:29 浏览: 143
打印格式
`print.format()` 是 Python 中的字符串格式化函数,用于将格式化字符串和参数列表组合成一个字符串并打印出来。它的使用方法类似于 C++ 中的 `str.Format()`,但是它是通过 `print` 函数来输出格式化字符串的。
`print.format()` 的基本语法如下:
```python
print(str.format(args))
```
其中,`str` 是格式化字符串,`args` 是一个或多个用于填充格式化字符串中占位符的参数。在格式化字符串中,占位符使用 `{}` 表示,可以在 `{}` 中指定参数的位置、格式等信息。例如:
```python
name = "John"
age = 18
print("My name is {}, and I'm {} years old.".format(name, age))
```
在上面的例子中,我们使用 `print.format()` 函数将两个变量 `name` 和 `age` 进行格式化,并输出到控制台。输出的结果为 `"My name is John, and I'm 18 years old."`。
除了使用位置参数进行格式化以外,`print.format()` 还支持使用关键字参数、指定参数格式等高级用法。具体用法可以参考 Python 官方文档。
阅读全文