一、if....elif.....else 判断
1、语法结构、if else格式
if 条件1 : print(“条件1成立、打印”) else: print(“条件1不成立、打印”)
if elif else格式
if 条件1 :# 判断条件1是否成立 print("条件1成立、打印")# 条件1成立打印 elif 条件2 :# 条件1不成立的基础上继续判断条件2是否成立 print("如果条件2也成立、打印") else:# 条件2为False 执行else print("条件不成立、打印")
2、练习实例——————制作简单的用户登录程序、
1 user_name = "thinkpad" 2 user_password = "abc123" 3 4 user_input_name = input("name...") 5 user_input_password = input("password...") 6 7 if user_input_password = user_password and user_input_name = user_name : 8 print("welcome you... ") 9 else: 10 print("name or password error...")