Python 리스트 append()

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 }}