DEV 2011/11/28 python リストの追加 append() #Python list = [1,2,3,4,5] list.append(6) これは list += [6] よりも効率的らしい