Python Programming
https://www.youtube.com/watch?v=N4mEzFDjqtA&list=WL&index=34
の10:00頃から
test.py
grocery_list = [ 'AAA', 'BBB', 'CCC']
other_list = [ '111', '222', '333']
all_list = [ grocery_list, other_list]
print(all_list)
print(all_list[1][1])
結果
Success time: 0.03 memory: 44632 signal:0
[['AAA', 'BBB', 'CCC'], ['111', '222', '333']]
222