码迷,mamicode.com
首页 > 其他好文 > 详细

20190616——and和or使用方法

时间:2019-06-17 01:25:38      阅读:129      评论:0      收藏:0      [点我收藏+]

标签:class   执行   结果   顺序   使用方法   方法   执行顺序   ase   col   

 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使用方法

标签:class   执行   结果   顺序   使用方法   方法   执行顺序   ase   col   

原文地址:https://www.cnblogs.com/yssshiny/p/11037285.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!