python基础之分支结构
Posted 巫小诗
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python基础之分支结构相关的知识,希望对你有一定的参考价值。
python基础之分支结构 if ... else ....
#if ... else 循环 username = input(‘请输入用户名 ‘).strip() password = input(‘请输入密码 ‘).strip() if username == ‘admin‘ and password=‘123456‘: print(‘登陆成功‘) else: print(‘用户名或者密码错误,请重新登陆‘)
# if ... el: ... else: score = int(input(‘您的考试分数 ‘).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基础之分支结构的主要内容,如果未能解决你的问题,请参考以下文章