一,
.如果:成绩>=90,那么:优秀
如果成绩>=80且<90,那么:良好
如果成绩>=70且<80,那么:普通
其他情况:很差
score=input('please input your score:')
score=int(score)
if score >= 90:
print('优秀')
elif score >= 80:
print('良好')
elif score >= 70:
print('普通')
else:
print('很差')
age_of_gile=30
if age_of_gile > 28:
print('阿姨好')
二。
age_of_gile=18
if age_of_gile >30:
print('阿姨好')
else:
print('小姐好')
三。
# 女人的年龄>=18并且<22岁并且身高>170并且体重<100并且是漂亮的,那么:表白,否则:叫阿姨
age_of_gile=21
height=173
weight=98
is_pretty=True
success=True
if age_of_gile >= 18 and age_of_gile < 22 and height > 170 and weight < 100 and is_pretty == True:
print('我喜欢你,你喜欢我吗?')
if success == True:
print('在一起,终于不用做单身狗了!')
else:
print('开玩笑,我能喜欢你,看你那傻样。')
else:
print('阿姨好,再见,不送。')