前提・実現したいこと
python3でランダムな数字3つを当てるゲームを作りたいです。
答えのリストanswerと予想のリストpredictionを比較して、位置と数値が一致したらヒット、数字だけ一致した場合はボールと表示したいです。
ex)答えが(4,5,4)で予想が(4,4,2)の場合には
1ヒット!、1ボール!と表示したいです。
エラーはでないのですが数字、位置があっててもヒット、ボールとも表示が0となり、原因が不明です。
よろしくお願いいたします。
from random import randint print('数当ゲームを始めます。3桁の数を当ててください。') answer = list() for n in range(3): answer.append(randint(0,9)) is_continue = True while is_continue == True: prediction = list() for n in range(3): data = input(f'{n+1}桁目の予想を入力>>') prediction.append(data) hit = 0 blow = 0 for n in range(3): if prediction[n] == answer[n]: hit += 1 else: for m in range(3): if prediction[n] == answer[m] and n != m: blow += 1 print('{}ヒット!、{}ボール!'.format(hit,blow)) if hit == 3: print('正解です!') is_continue = False else: if int(input('続けますか? 1:続ける 2:終了>>')) == 2: print(f'正解は{answer[0]},{answer[1]},{answer[2]}でした。') is_continue == False
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。