20190616——and和or使用方法
Posted yssshiny
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了20190616——and和or使用方法相关的知识,希望对你有一定的参考价值。
1 """ 如果有括号:先计算括号内 2 如果没有括号: 3 执行顺序:从前到后 4 结果:True or ==》True 5 True and ==》继续走 6 False or ==》继续走 7 False and ==》Flase 8 """ 9 user = ‘ales‘ 10 pwd = ‘123‘ 11 v1 = user == ‘ales‘ and pwd == ‘1233‘ or user == ‘alex‘ and pwd == ‘1273‘ and user == ‘alets‘ 12 v2 = user == ‘ales‘ and (pwd == ‘1233‘ or user == ‘alex‘ and pwd == ‘1273‘) 13 print(v1) 14 print(v2)
》》》》》》
False
False
以上是关于20190616——and和or使用方法的主要内容,如果未能解决你的问题,请参考以下文章