python 如果有x1, y1, x2, y2 如何使得print 能输出x1, y1, x2, y2 用上format
时间: 2023-09-11 15:08:38 浏览: 144
python对print的运用
您可以使用字符串的format方法来格式化输出这些变量的值。例如:
```
x1 = 10
y1 = 20
x2 = 30
y2 = 40
print("{} {} {} {}".format(x1, y1, x2, y2))
```
输出结果为:
```
10 20 30 40
```
在这个例子中,我们使用了format方法,并在其中包含了四个占位符({})。在调用format方法时,我们将x1、y1、x2和y2的值作为参数传递给了format方法,这些值会依次替换掉占位符,并输出格式化后的字符串。
阅读全文