码迷,mamicode.com
首页 > 编程语言 > 详细

python基础之分支结构

时间:2018-10-02 17:25:40      阅读:184      评论:0      收藏:0      [点我收藏+]

标签:lse   用户名   username   登陆   考试   user   use   input   pre   

python基础之分支结构 if ... else ....

#if ... else 循环
username = input(请输入用户名\n).strip()
password  = input(请输入密码\n).strip()

if username == admin and password=123456:
    print(登陆成功)
else:
    print(用户名或者密码错误,请重新登陆)

 

# if ... el: ... else:

score = int(input(您的考试分数\n).strip())
if score>90:
    print(A+)
el score>80:
    print(A)
el score>70:
    print(B+)
el score>60:
    print(B)
else:
   print(C)

 

python基础之分支结构

标签:lse   用户名   username   登陆   考试   user   use   input   pre   

原文地址:https://www.cnblogs.com/wuxiaoshi/p/9736877.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!