최근 파이썬 PS 하면서 배운 것
dict 의 fromkeys() 메서드 - 딕셔너리 생성 시, 이미 key 값이 정해진 경우 편리하게 딕셔너리를 생성할 수 있다. - seq : 딕셔너리의 key 값이 될 iterable 로, 즉 dictionary 의 key 목록이다. - value : seq 의 각 key 에 할당될 value (값) 의미 # 정의 @staticmethod # known case def fromkeys(*args, **kwargs): # real signature unknown """ Create a new dictionary with keys from iterable and values set to value. """ pass # 사용법 value = 0 seq = [1, 2, 3] dictionary = dict...
2022.05.05