Python求解錯,不知道哪裡有問題。。。

雪山斐胡發表於2018-06-17
import random
secert = random.randint(1,10)
temp = input("不妨猜一下通哥心裡想的是哪個數字:")
guess = int(temp)


while guess != secert:
if guess == secert:
pass
else:
if guess > secert:
print("哎,大了大了~~~")
else:
print("嘿,小了小了~~~")
temp = input("")
guess = int(temp)
if guess == secert:
        print("通哥其實心裡想的是你!")
        print("臥槽,這你都能猜中,你是通哥肚子裡的蛔蟲嗎?!")
print(" ")
print("本寶寶走啦,不玩啦*^*")

相關文章