skip to content
barorin&?

listにlistをappendする方法

/ 1 min read

はじめに

Pythonでlistにlistをappendする方法です。

方法

lst = ['I', 'my', 'me']
addlist = ['one', 'two', 'three']
lst[len(lst): len(lst)] = addlist

lst
# output: ['I', 'my', 'me', 'one', 'two', 'three']