末尾加 \ 或 Enter ,回车使用看情况,\通用。
如果是print字符串换行,可以加三个单引号或三个双引号,但是这样回车换行会保留,若要呈现无换行的字符串,引号中每行末尾可加 \ ,或字符串用双引号,在双引号外面加圆括号()
python 字符串换行的三种方式
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
if __name__ = = '__main__' :
#第一种: 三个单引号
print ''' aaaaaaaaaaaaaaaa
bbbbbbbbbbbbbb'''
#第二种: 三个双引号
print """ aaaaaaaaaaaaaaaa
bbbbbbbbbbbbbb"""
#第三种: \结尾
print "aaaaaaaaaaaaaaaa,\
bbbbbbbbbbbbbb"
|
python代码换行就是每行后面加个 \
举个栗子:
1
2
3
4
5
|
time = "2017"
print "one" + "," \
+ "two" \
+ ",three" + \
"," + time
|
打印出来就是:
one,two,three,2017
再举一个栗子:
1
2
|
print "this line is toooooooooooo \
long "
|
打印出来:
this line is toooooooooooo long
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。
原文链接:https://blog.csdn.net/codechelle/article/details/61199212