-
<PYTHON>[.append & .extend]Flower in my dev/Python 2015. 7. 9. 21:06
.append 와 .extend 비교
12345678910111213141516list = []list.append('first')list.extend('first')print listlist = []list.append(['second','third'])list.extend(['second','third'])print listcs 'Flower in my dev > Python' 카테고리의 다른 글
<PYTHON>[dpkt] (0) 2015.07.10 <PYTHON>[collections] (0) 2015.07.10 <PYTHON>[ip 변환] (0) 2015.07.09 <PYTHON>[locale] (0) 2015.07.09 <PYTHON>[pysftp] (0) 2015.07.02