当前位置:Gxlcms > Python > python3中怎么实现换行输出

python3中怎么实现换行输出

时间:2021-07-01 10:21:17 帮助过:242人阅读

print默认输出是换行的,如果要实现不换行需要在变量末尾加上end="":

x="a"y="b"
# 换行
输出 print( x ) print( y ) print('---------') # 不换行输出 print( x, end=" " ) print( y, end=" " ) print()

执行结果如下:

a
b
---------
a b

常用的转义符方式:\n

#-*-coding:utf-8-*-
A = "来看看能不能\n换行。"
print (A)

执行结果:

来看看能不能
换行。

在Python2.x中print默认输出是换行的,如果要实现不换行需要在变量末尾加上逗号 。

#!/usr/bin/python
# -*- coding: UTF-8 -*-
x="a"
y="b"
# 换行
输出 print x print y print '---------' # 不换行输出 print x, print y, # 不换行输出 print x,y
#执行结果
a
b
---------
a b a b

更多Python相关技术文章,请访问Python教程栏目进行学习!

以上就是python3中怎么实现换行输出的详细内容,更多请关注Gxl网其它相关文章!

人气教程排行