python 判断语句
# coding=utf-8 引用utf-8字符编码
score = 90
if score>=80:
print("好")
elif score>=60:
print("及格")
else:
print("不好")# coding=utf-8 引用utf-8字符编码
score = 90
if score>=80:
print("好")
elif score>=60:
print("及格")
else:
print("不好")评论
评论列表
暂无评论,快来抢沙发吧~