Python 리스트 append()

Jmnote (토론 | 기여)님의 2020년 2월 29일 (토) 10:58 판
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

1 개요[ | ]

파이썬 append()
fruits = ['yellow', 'blue', 'green']
fruits.insert(0, "red")
print( fruits ) # ['red', 'yellow', 'blue', 'green']

2 같이 보기[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}