edo1z blog

プログラミングなどに関するブログです

2011-11-28から1日間の記事一覧

python リストの追加 append()

list = [1,2,3,4,5]list.append(6)これは list += [6] よりも効率的らしい