python提示语法错误,小白一个,怎么看都不知道哪里错误?

score=90

if score≥80:
print("很好")

elif score≥60;
print("及格")

elif score≥30;
print("不及格")

else;
print("很差")

score = 90

if score >= 80:
print("很好")

elif score >= 60:
print("及格")

elif score >= 30:
print("不及格")

else:
print("很差")
都是符号错误追问

谢谢,那些符号是我后面改的,看了你的我知道了,我没有加空格,谢谢啦

温馨提示:答案为网友推荐,仅供参考
第1个回答  2020-08-16

参考一下这个网页链接

相似回答