python:print函数中end的作用

print

所属模块:内置

功能:打印


实例1:print中end的作用

#!/usr/bin/python3
#code-python(3.6)
#默认用换行符连接两行
print("first")
print("second")

#不换行,用空字符串连接两行
print("first",end='')
print("second")

#不换行,用空格连接两行
print("first",end=' ')
print("second")

#不换行,用字符xx连接两行
print("first",end='xx')
print("second")

该网站可在线测试本文代码,以便快速理解本文代码:http://kakazai.cn/index.php/Kaka/Python/query/name/print

你可能感兴趣的:(python)