欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

python代码过长的换行方法

程序员文章站 2022-05-26 13:32:31
python代码换行就是每行后面加个 \ 举个栗子: time = "2017" print "one" + "," \ + "two" \ + ",th...

python代码换行就是每行后面加个 \

举个栗子:

time = "2017"
print "one" + "," \
+ "two" \
+ ",three" + \
"," + time

打印出来就是:

one,two,three,2017

再举一个栗子:

print "this line is toooooooooooo \
long"

打印出来:

this line is toooooooooooo long

以上这篇python代码过长的换行方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。