在编写Python代码时,有效换行可以让代码变得更加美观,那么Python中如何进行代码换行?Python中换行的方法有很多,本文为大家介绍两种比较常用的方法,快来看看吧。
Python建议每行代码的长度不超过80个字符。对于过长的代码,建议进行换行。
1、在该行代码末尾加上续行符“\”,即空格+\
test = 'item_one'\
'item_two' \
'tem_three'
输出结果:'item_oneitem_twotem_three'
2、加上括号,(){}[]中不需要特别加换行符
我们可以根据Python会将圆括号、中括号和花括号中的行隐式连接起来的这个特点,将过长的语句换行显示,并在语句外侧添加一对圆括号。
test2 = ('csdn'
'cssdn')
输出结果:csdn cssdn
test3 = ('hello'
''
'world')
输出结果:hello world
需要注意的是,在[]、{}或()中的语句换行,我们不需要再使用圆括号进行换行。示例代码如下:
total = ['item one', 'item two', 'item three',
'item four', item_five']
标签:item,Python,代码,three,圆括号,换行,详解 From: https://blog.51cto.com/u_14661964/6254926