print("What are you planning to buy today?") Shopping_list = ['What your going to buy'] thing = input() count = 0 i = 5000 if thing != 'all': for i in range(5000): count = count + 1 Shopping_list.insert(count,thing) print("Do you have anything else to buy? If you don't have anything, type all.") thing = input() print(Shopping_list) " コード ```### 前提・実現したいこと ここに質問の内容を詳しく書いてください。 Python(Pycharm)でお買い物リストを簡単に作れるプログラム作りをしています。allとinputされたらリストのなかみをプリントしたいのですが、allと打ってもprintしません。どうしたらいいでしょうか。 ### 発生している問題・エラーメッセージ ### 該当のソースコード print("What are you planning to buy today?") Shopping_list = ['What your going to buy'] thing = input() count = 0 i = 5000 if thing != 'all': for i in range(5000): count = count + 1 Shopping_list.insert(count,thing) print("Do you have anything else to buy? If you don't have anything, type all.") thing = input() print(Shopping_list) ```Python(Pycharm) ソースコード print("What are you planning to buy today?") Shopping_list = ['What your going to buy'] thing = input() count = 0 i = 5000 if thing != 'all': for i in range(5000): count = count + 1 Shopping_list.insert(count,thing) print("Do you have anything else to buy? If you don't have anything, type all.") thing = input() print(Shopping_list) ### 試したこと while 文 や for文 など を試してみたりしました。 ### 補足情報(FW/ツールのバージョンなど) Python初心者の小学生です。よろしくお願いいたします。
回答1件
あなたの回答
tips
プレビュー