python多行语句
Posted 一只竹子
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python多行语句相关的知识,希望对你有一定的参考价值。
多行语句
Python 通常是一行写完一条语句,但如果语句很长,我们可以使用反斜杠()来实现多行语句,例如:
total = item_one + item_two + item_three
在 [], {}, 或 () 中的多行语句,不需要使用反斜杠(),例如:
total = [‘item_one‘, ‘item_two‘, ‘item_three‘,
‘item_four‘, ‘item_five‘]
以上是关于python多行语句的主要内容,如果未能解决你的问题,请参考以下文章