导语:
本文主要介绍了关于python中print如何不换行的相关知识,包括python输出数字如何换行,以及python怎么不换行输入这些编程知识,希望对大家有参考作用。
大家应该知道python中print之后是默认换行的,
那么为什么我们不想换行,也不想讲输出内容用打印功能输出,我们需要改变打印的默认换行符的属性,
方法如下:
print('contents', end='!@#$%^&*')
end就表示print将如何结束,默认为end="\n"(换行)
栗子:
print("祝各位身体健康")
print("!")
print("祝各位身体健康", end=' ')
print("!")
python3.0 的print 函数有如下的形式:
print([object,...][,seq=' '][,end='\n'][,file=sys.stdout])
我们在使用print()函数时,并不希望输出结束后自动换行,因此,我们可以按照下面的方法来做
1.print()指定结束符
print('hello',end='')
print('world')
#result:helloworld
当 print() 函数指定结束参数为空字符时, print() 函数不再主动添加换行符。此外,hello 和 world 之间没有空格。
a = 'first line'
b = 'second line'
c = 'third line'
print(a,end='\n\n')
print(b)
print(c,end='!')
我们可以使用指定终止符的方法来灵活控制换行符和结束符的个数。
本文为原创文章,版权归知行编程网所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ 如何在python中实现线程计算密集型?12/28
- ♥ python3 不是内部命令09/28
- ♥ python如何定义类09/04
- ♥ python中pip安装在哪里08/21
- ♥ 精通python需要多长时间10/18
- ♥ 在 Python 中进行数据模块化,你不能错过的库!12/15
内容反馈