Recent Posts
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- Torch
- nlp
- FGVC
- classification
- PRML
- computervision
- 머신러닝
- 자료구조
- Vision
- FineGrained
- CV
- clean code
- dl
- Depth estimation
- web
- 3d
- Meta Learning
- GAN
- Front
- Python
- REACT
- 알고리즘
- pytorch
- algorithm
- SSL
- cs
- 딥러닝
- nerf
- math
- ML
- Today
- Total
목록dictionary (1)
KalelPark's LAB
[ CLEAN CODE ] Clean Python, Dictionary 활용하기
Dictionary - 파이썬에서 Dictionary를 활용할 때, 어떤 Key에 대한 Value를 처리해야 하는 경우가 상당히 많이 존재합니다. EX> def counterLetters(word): counter = {} for letter in word: if letter not in counter: counter[letter] = 0 counter[letter] += 1 return counter * 위 코드의 문제는 letter가 counter내에 존재하지 않으면, 초기 세팅을 해주는 코드입니다. 하지만, 위 코드의 문제는 가독성이 상당히 떨어진다는 상당한 문제점이 존재합니다. Dict.setdefault - Key와 Value를 인자로 받는 Dictionary의 Method입니다. 원리는 set..
Python/CLEAN CODE
2023. 1. 2. 13:10