笔记04:条件
if
判断条件成立,则运行其包含的语句或代码块
if-else
判断条件成立,则运行其包含的代码块,不成立则执行另外的语句或代码块
if-elif
多个条件,一个不成立就判断另一个
if-elif-else
在上一类的基础上,如果所有条件都不成立,则执行另外的代码
条件表达式
条件成立时执行的语句 if condition else 条件不成立时执行的语句
if-else
a = 3
b = 5
small = a if a < b else b
if-elif-else
score = 66
level = ('D' if 0 < score < 60 else
'C' if score < 70 else
'B' if score < 80 else
'A' if score < 100 else
"请输入0-100之间的数")
标签:语句,elif,else,datawhale04,score,条件,成立
From: https://www.cnblogs.com/Melnis/p/17860631.html