前提・実現したいこと
while文の中にinputとappendを4つ入れています。
ループが回るたびに、別の配列としてリスト内に入力データを格納したいです。
実行結果
現在得られている結果:
["a","b","c","d","e","f","g","h"....]
求めている結果:
[["a","b","c","d"],["e","f","g","h"]....]
該当のソースコード
data = [] keepAsking = True while keepAsking: data.append(input("1:")) data.append(input("2: ")) data.append(input("3:")) data.append(input("4:")) checkContinue = True while checkContinue: record = input("Do you wish to enter another record? (Y/N) ") if record == "YES": break else: checkContinue = False keepAsking = False print("END")
補足情報(FW/ツールのバージョンなど)
python3.8.2
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/05/05 07:35