三元操作符
score = int(input('请输入一个分数:'))level = 'A' if 100 <= score <= 90 else 'B' if 80 <= score < 90 else 'C' if 60 <= score < 80 else 'D' if 0 <= score < 60 else print('输入错误!')
print(level)
这个能执行,如果将else改为elif为什么不能执行?在一些其他的代码里面却又能执行。还是说elif不能在三元操作符里运用,还是说我的方法错了?
score = int(input('请输入一个分数:'))
level = 'A' if 100 <= score <= 90 elif 'B' if 80 <= score < 90 elif 'C' if 60 <= score < 80 elif 'D' if 0 <= score < 60 else print('输入错误!')
print(level)
elif 后面必须要跟条件才行的,而else就不用跟条件,直接:回车到下一行 三元操作符格式:i =(成立) if (条件) else (不成立)
规则如此,因此不能使用elif,如果确实有需求,例如
if x < y:
small = x
if z < small:
small = z
elif y < z:
small = y
else:
small = z
可以用括号来写:
small = x if ( x < y and x < z ) else ( y if y < z else z ) 你自己的写法显然欠妥
level = 'A' if 100 <= score <= 90 elif 'B' if 80 <= score < 90 elif 'C' if 60 <= score < 80 elif 'D' if 0 <= score < 60 else print('输入错误!')
elif 'B' if 、elif 'C' if 、 elif 'D' if,难道 'B'、'C'、'D'都成了条件表达式了? def func(score = int(input("請輸入一個分數:"))):
levels = {'A': 90, 'B': 80, 'C': 60, 'D': 0}
for grade in levels.keys():
if score > levels:
return grade
print(func())
页:
[1]