plotly
-
2021-07-06 읽을거리읽을거리 2021. 7. 6. 17:26
python 1. 잘못 이해할 수 있는 파이썬 컨셉 5가지 파이썬의 기본 문법들이지만 컨셉을 왜 적용했는지에 대한 내용이다. 코드의 효율화 관점으로 보면 될 것이다. https://betterprogramming.pub/5-python-concepts-that-are-misunderstood-by-beginners-dc8347682a24 5 Python Concepts That Are Misunderstood by Beginners Python is easy — but it can still be tricky when you are starting out betterprogramming.pub 2. python에서의 singleton 패턴 python에서 singleton 패턴을 어떻게 사용하는지, 어떨..
-
2021-07-04 읽을거리읽을거리 2021. 7. 4. 17:21
python 1. iterable 과 iterator 차이 python에서 이런 세세한 함수들의 차이를 알고 사용하면 좀더 효율적인 코드를 작성할 수 있는 토대가 된다. https://twpower.github.io/267-python-iterable-and-iterator [Python] Iterable과 Iterator Practice makes perfect! twpower.github.io 2. python 코드를 더 효율적이고 가독성 있게 짜는 4가지 방법 이전에도 소개했던 글들에서 크게 다른 점은 없지만, built-in 함수인 enumerate 와 f-string이 추가적으로 소개되어 있다. https://betterprogramming.pub/4-ways-to-level-up-your-py..