我已经设置了这个程序来检查 100 分的测试。如果用户输入小于 60,它应该说失败,如果超过 59,则通过。
mark = int(input("Please enter the exam mark out of 100 "))
if mark < 60:
print("\nFail")
elif mark < 101:
print("\nPass")
else:
print("\nThe mark is out of range")
如果用户不输入整数,我如何让程序没有错误。
请帮忙,有14岁的孩子能理解的快速解决方案吗?