赞
踩
Python语言中的逻辑运算符包括:或、与、非,分别用 “|”、“&”、"~"符号表示。
当两个操作数中有一个为True时,结果为True。
例如:
a = 1
b = 2
c = 3
if a == 1 or b == 3:
print("a=1或者b=3为True")
if b == 2 or c == 5:
print("b=2或者c=5为True")
输出结果为:
a=1或者b=3为True
b=2或者c=5为True
当两个操作数都为True时,结果为True。
例如:
a = 1
b = 2
c = 3
if a == 1 & b == 2:
print("a=1且b=2为True")
if b == 2 & c == 5:
print("b=2且c=5为True")
输出结果为:
a=1且b=2为True
非运算符(
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。