-
[Python] dictionary에 여러개의 value를 넣어보자Python 2021. 12. 15. 23:51
filter_args = {} s_amenitties = [1, 2, 3, 4, 5] for s_amenity in s_amenitties: filter_args.setdefault("amenities__pk", []).append(int(s_amenity)) print(filter_args) => {'amenities__pk': [1, 2, 3, 4, 5]}
'Python' 카테고리의 다른 글
[Python] 비동기 처리를 해보자 (0) 2022.01.10 [Python] dotenv 사용하기 (0) 2021.12.16 [Python] dict 합치기 (merge) (0) 2021.12.15 [Python] .join() method 이용해서 간지나게 list 뜯어보기 (0) 2021.12.04 [Python] 함수의 arguments에 함수를 던져보자 (0) 2021.11.25