while、for、break、continue、if...elif....else 、基础语法以及练习实例

一、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...")
上一篇:django-模板中if标签的应用


下一篇:Python第四周练习:身体质量指数BMI