if语句的基本语法
if关键字后面跟一个判断条件 如果条件成立那么就运行判断条件里面的代码
else处理条件不满足时候的代码块
m = 9
if m > 10:
print("买一瓶醋")
else:
print("钱不够,请带够钱再来吧!")
#条件判断流程图
进入网吧之年龄判断
age = int(input("请输入你的年龄?"))
if age >= 18:
print("可以进入网吧!")
else:
print("回家写作业")
逻辑运算符
- and
- or
- not
# 逻辑运算符 一共有三种 1.and 2.or 3.not
# and 两边跟的是两个条件 如果两个条件都成立 就执行代码块
# or 两边跟的是两个条件 只要一个条件成立 就执行代码块
# not 后面跟一个条件 如果条件不成立 就执行代码块
chinese = 60
math = 98
if chinese == 100 and math == 100:
print("我们去迪士尼玩")
if chinese == 100 or math == 100:
print("我们就去大唐不夜城")
if not chinese > 60:
print("回家吃皮带炒肉")
作业:
a = 50
b = 90
if a>50 or b>60:
print("考试通过")
else:
print("考试不通过")
a = 60
b = 99
if a>60 and b>60:
print("考试通过")
else:
print("考试不通过")