python的if-elif-else用法代码举例
时间: 2023-11-25 19:07:33 浏览: 83
python高中基础代码.docx
当然,以下是一个使用if-elif-else的Python代码示例:
```python
score = 85
if score >= 90:
grade = "A"
elif score >= 80:
grade = "B"
elif score >= 70:
grade = "C"
elif score >= 60:
grade = "D"
else:
grade = "F"
print("Your grade is:", grade)
```
以上代码根据分数等级为学生分配一个成绩。根据分数的不同范围,使用if-elif-else语句来决定学生的成绩等级,并将结果打印出来。
阅读全文