判断:
1、单分支判断语句
if 条件:
内容1
内容2
else:
内容3
内容4
实例:
1 if 1 == 1: 2 print("yes") 3 else: 4 print("no")
2、多分支判断语句
if 条件:
内容1
内容2
elif 条件
内容3
elif 条件
内容4
else:
内容5
实例:
1 inp = input(">>>") 2 if inp == "1": 3 print("111") 4 elif inp == "2": 5 print("222") 6 elif inp == "3" 7 print("333") 8 else: 9 print(".....")
3、带有与and、或or的 if 判断语句
实例:
1 name = input("username") 2 pwd = input("password") 3 if name == "alex" and pwd == "123": 4 print("yes") 5 elif name == "alex1" or pwd == "123" 6 print("yes") 7 else: 8 print("no")
时间: 2024-10-12 12:23:53