python如何换行输出两个参数

在Python中,可以使用`print()`函数来输出两个参数并且换行。例如:

```python

a = 10

b = 20

print(a)

print(b)

```

这将会输出:

```

10

20

```

阅读剩余
THE END