print([object, ...], *, sep=' ', end='\n', file=sys.stdout,flush=FALSE)
python中print之后是默认换行的,是因为其默认属性 end 默认值为"\n"(\n为换行符)
print('23 祝大家天天开心', end='!')
>>> 23 祝大家天天开心!
end就表示print将如何结束,默认为end="\n"(\n为换行符)
来源:博客园
作者:HISAK
链接:https://www.cnblogs.com/HISAK/p/11622133.html