python语法规则

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python语法规则相关的知识,希望对你有一定的参考价值。

 1 >>> 2 or 3,3 or 2
 2 (2, 3)
 3 >>> 0 or 3
 4 3
 5 >>> [] or 3
 6 3
 7 >>> 0 or []
 8 []
 9 
10 # or  从左往右  如果左边操作数是真值则输出左边操作数,否则输出右边
11 
12 >>> 2 and 3, 3 and 2
13 (3, 2)
14 >>> 0 and 3
15 0
16 >>> [] and 0
17 []
18 
19 # and  跟 or  正好相反

 

以上是关于python语法规则的主要内容,如果未能解决你的问题,请参考以下文章

python 学习python语法的片段

我整理的Python代码规则

Python如何调用别人写好的脚本

python基本语法规则都有哪些?

【Python基础】python基本语法规则都有哪些?

在下面的代码片段中的剩余 ='passthrough' 处的代码中出现语法错误