导语:
本文主要介绍了关于python写代码怎么跳到下一行的相关知识,包括python怎么编写软件,以及python编程在哪里写这些编程知识,希望对大家有参考作用。
在 Python 中,所有代码通常都写在一行中。如果遇到需要换行而没有完成一行的情况,有两种方法:
1.在该行代码末尾加上续行符“ \”(即空格+\);
test = 'item_one' \
'item_two' \
'tem_three'
输出结果:
'item_oneitem_twotem_three'
2.加上括号,() {} []中不需要特别加换行符:
test2 = ('csdn '
'cssdn')
输出结果:
csdn cssdn
if...and:
if (where there is a will and
there is a way)
多次未输出结果
test3 =('Hello'
' '
'world')
输出结果:
Hello world
推荐学习《
》
本文为原创文章,版权归知行编程网所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ python中的条带是什么?11/01
- ♥ Python中的if else语句出错11/05
- ♥ 最流行最实用的python插件,你用过吗?11/05
- ♥ 如何在 Python 的 xlwt 和 xlrd 中创建新工作表09/16
- ♥ 如何使用python的import语句08/23
- ♥ Python 列表推导(用于表达式)和用法10/10
内容反馈