当前位置:   article > 正文

chatgpt赋能python:Python中的或且非_python或者的符号

python或者的符号

Python中的或且非

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")
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

输出结果为:

a=1或者b=3为True
b=2或者c=5为True
  • 1
  • 2

与运算符(&)

当两个操作数都为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")
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

输出结果为:

a=1且b=2为True
  • 1

非运算符(~)

非运算符(

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/800148
推荐阅读
相关标签
  

闽ICP备14008679号