print("猜数字")
temp = input("猜一下我想的:")
guess = int(temp)
while guess != 8:
temp = input("猜猜我要你猜的:")
guess = int(temp)
if guess == 8:
print("对了")
else:
if guess > 8:
print("大了")
else:
print("小了")
print("GAMEOVER")
12和14的缩进不一致
注意tab键的使用,第五行的空格数量有问题