我们知道,在python中,使用print()打印的时候,会默认添加换行符,举个例子:

print('hello')
print('world')

输出:

hello

world 

如果我们理想的状态是需要打印“hello world” 怎么办呢?也就是去掉这个默认的换行该怎么做呢?

我们可以这样:

print('hello',end=' ')
print('world')

输出:

hello world

解释一下,这里的end=‘ ’就表示打印的结束处的换行符用空格替换。

我们再试试其它的:

print('hello',end='xxx')
print('world')

输出:

helloxxxworld

 现在是不是明白了呢?