请看如下示例:
# @Time : 2017/7/2 15:38
# @Author : 原创作者:谷哥的小弟
# @Site : 博客地址:http://blog.csdn.net/lfdfhl
# @DESC : if和else
a=8
b=6
c=5
d=7
if a>b:
print('a比b大')
if c>d:
print('c大于d')
else:
print('c不大于d')
result=88
if result>95:
print('成绩很优秀')
elif result>85 and result<=95:
print('成绩不错')
elif result>60 and result<=85:
print('成绩合格')
else:
print('成绩不及格')
输出结果:
a比b大
c不大于d
成绩不错
时间: 2024-09-20 21:38:17