728x90
코드 비대화는 일반적으로 쓸모없는 코드가 너무 긴 상황을 가리킨다.
예시
python3 에서 URL 생성 및 출력하는 소스 코드이다.
- 쓸데없이 긴 경우 (코드 비대화)
naver_url = "https://finance.naver.com"
search_pending = "item/main.naver"
code_query = "code"
total = naver_url + "/" + search_pending + "?" + code_query + "=" + "12345"
print(total)
- 간단한 경우
total = f"https://finance.naver.com/item/main.naver?code={12345}"
print(total)
'술(述) > 풀이' 카테고리의 다른 글
LSP (0) | 2021.12.10 |
---|---|
bash 설정 파일 (0) | 2021.12.05 |
headless server(헤드리스 서버) (0) | 2021.11.22 |
횡단 관심사(Cross-cutting concerns) (0) | 2021.11.18 |
UUID (0) | 2021.11.14 |