-4
high = 100
low = 0
print('Please think of a number between 0 and 100!')
while True :
middle = (high + low) // 2
print('Is your secret number ' + str(middle))
ans = 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 ans == 'h' :
high = ans
print('Is your secret number' + str(middle))
elif ans == 'l' :
low = ans
print('Is your secret number' + str(middle)
elif ans == 'c' :
break
print('your secret num is' + str(middle))
を与えますか? 質問はans
がhigh
またはlow
に割り当てることができません
あなたは試験のテストをしたいですか? –
エラーメッセージをコード形式で送信することができます。 – zhenguoli