리스트 말고 딕셔너리 dictionary 타입 처리는 어떻게? 맨날 헷갈려서 그냥 적어두자.
비어있는지 체크하는 방법은 아래와 같다.
test_dict = {}
if not test_dict:
print "Dict is Empty"
if not bool(test_dict):
print "Dict is Empty"
if len(test_dict) == 0:
print "Dict is Empty"
아이템 추가는
https://www.kite.com/python/answers/how-to-append-a-value-to-an-empty-dictionary-in-python
a_dict = {}
a_dict["key"] = "value"
print(a_dict)
이상. BJ.
Дмитрий Трепольский 님의 사진, 출처: Pexels
'IT > 파이썬' 카테고리의 다른 글
파이썬 *args, **kwargs 의미는? (0) | 2021.06.15 |
---|---|
Flask redirect 할 때 POST 데이터도 같이 넘기기 (0) | 2021.06.15 |
파이썬 - 순환 참조 문제 Circular Imports 에러 (0) | 2021.06.09 |
파이썬 리스트 삭제, clear (0) | 2021.05.24 |
파이썬 - 함수 전달인수에 * 가 있다면 멀까? (0) | 2021.05.20 |