一、条件语句:
1、if基本语句
if 条件 :
代码块
else:
代码块
print(".......")
2、if 支持嵌套
#!/user/bin/env python
if 1 == 1: if 2 == 2: print("收到") else: print("没有收到")else: print("good")
3、if elif
inp=input("请输入会员级别:")
if inp=="高级会员": print("送茅台1瓶")elif inp=="铂金会员": print("送五星茅台1瓶")elif inp=="白金会员": print("五粮液1瓶")else: print("价值100的红酒1瓶")
备注:
1、1==1不想输出任何东西
if 1==1:
psss——表示不执行:过
else:
print("正确")
2、代码是按顺序执行;
3、准确注意同一级别代码。
二、 while语句
死循环:
while 1==1:
print("ok")
while循环:
count = 0
while count< 10:
print(count)
count=count+1
print("不在进行累加")
原文地址:https://www.cnblogs.com/jianchixuexu/p/11407120.html
时间: 2024-11-05 14:37:17