我在 python 3 中有这段代码,用于检查输入错误,但我需要确定输入是否为整数,如果不是则打印错误消息。
谁能帮我找出我的while循环中的代码。谢谢
price = 110;
ttt = 1;
while price < 0 or price > 100:
price = input('Please enter your marks for Maths:');
ttt =ttt +1;
if ttt >= 2:
print( 'This is an invalid entry, Please enter a number between 0 and 100')