因为有int 只有输入0123456789这些数字才能不出问题 其他字符全是错误
for i in str:
if ord(i) >57 or ord(i) <48:
break
print(请输入正确的数字')