"파이썬 del"의 두 판 사이의 차이

1번째 줄: 1번째 줄:
==개요==
==개요==
;파이썬 del
;Python del Keyword, Python del
;Python del
;파이썬 del 키워드, 파이썬 del


{{소스헤더|리스트}}
{{소스헤더|리스트}}

2020년 2월 1일 (토) 12:57 판

1 개요

Python del Keyword, Python del
파이썬 del 키워드, 파이썬 del
리스트
names = ['john', 'jane', 'chris', 'alex']
del names[0]
print(names)
# ['jane', 'chris', 'alex']
names = ['john', 'jane', 'chris', 'alex']
del names[:2]
print(names)
# ['chris', 'alex']
딕셔너리
fruits = { 'a' : 'apple', 'b' : 'banana', 'c': 'cranberry' }
del fruits['b']
print fruits
# {'a': 'apple', 'c': 'cranberry'}

2 같이 보기

3 참고

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