python学习002-Python print 输出不换行
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python学习002-Python print 输出不换行相关的知识,希望对你有一定的参考价值。
python中print之后是默认换行的,
如果我们不想换行,且不想讲输出内容用一个print函数输出时,就需要改变print默认换行的属性,
方法如下:
print('contents', end='')
end就表示print将如何结束,默认为end="\n"(换行)
举例:
让print输出不换行:
以上是关于python学习002-Python print 输出不换行的主要内容,如果未能解决你的问题,请参考以下文章
Python 2.7.8 学习笔记(002)python manuals/the python tutorial -- 1. Whetting Your Appetite