当前位置 : 主页 > 编程语言 > python >

python_逻辑运算符

来源:互联网 收集:自由互联 发布时间:2022-07-19
python_逻辑运算符 #逻辑运算符 and 和 or score = 90 #and代表同时满足左右两个条件才去执行里面的代码 if score = 90 and score = 100 : print ( "优秀" ) num = 1 #or 只要满足左右两侧其中一个就打印 i


python_逻辑运算符

#逻辑运算符 and 和 or
score = 90
#and代表同时满足左右两个条件才去执行里面的代码
if score >=90 and score<=100:
print("优秀")
num = 1
#or 只要满足左右两侧其中一个就打印
if num == 1 or num == 2:
print("这个数字是我需要的")


#not
result = not num == 2
print(result)
if not num == 2:
print("hello")


上一篇:python_字符串类型常用操作
下一篇:没有了
网友评论