Python リストの操作 1000Python 2023年11月28日 0 1.サンプル#リストの操作my_list = ['A','B','C']#リストの表示for item in my_list: print(item)2.実行結果ABC PR