3

何らかの理由で、「モジュールの実行」を選択すると、IDLE は「Enter」を押すまでコードの最初の行を実行しません。このタイプのプログラムにとっては大きな問題ではありませんが、なぜこれが起こっているのか混乱しています。誰かが私のためにこれをクリアできますか? コードは次のとおりです。

print("Please think a number between 0 and 100!")
guess = 50
upper = 100
lower = 0
status = ""
while status != "c":
    print("Is your secret number ") + str(guess) + ("?")
    print ("Lower: ") + str(lower)
    print ("Upper: ") + str(upper)
    status = raw_input("Enter 'h' to indicate the guess is too high. Enter 'l' to indicate     the guess is too low. Enter 'c' to indicate I guessed correctly. ")
    if status == "h":
        upper = guess
        guess = guess - (guess - lower)/2
    elif status == "l":
        lower = guess
        guess = guess + (upper - guess)/2
    elif status == "c":
        break
    else:
    print("Sorry, I did not understand your input.")
print("Game over. Your secret number was: ") + str(guess)

本当にありがとう!

4

1 に答える 1

1

http://anh.cs.luc.edu/python/hands-on/3.1/handsonHtml/execution.htmlを参照してください(セクション 1.9.2 を参照)。前のプログラムが中断された場合に時々発生するバグです。

于 2013-03-06T22:43:26.567 に答える