UV Python Package / Project Manager
https://docs.astral.sh/uv/ uvAn extremely fast Python package and project manager, written in Rust. Installing Trio's dependencies with a warm cache. 🚀 A single tool to replace pip, pip-tools, pipx, poetry, pyenv, twine, virtualenv, and more. ⚡️ 10-100x faster than pip. 🐍 Indocs.astral.sh UV 라는 파이썬 패키지 매니저, 프로젝트 매니저를 유튜브를 보다가 알게됐다.매우 빠르고 rust 로 작성되었다는 특징 정도가 언급되어 있는데, 파이썬으로 프로젝트를 만들면서 고민하고 있는 ..
SWIFT 기초] 배열 슬라이싱 python과 swift 비교
>>> l = list(range(10)) >>> l [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] >>> l[:3] [0, 1, 2] >>> l[3:7] [3, 4, 5, 6] >>> l[7:] [7, 8, 9] 위와 같은 파이썬에서의 슬라이싱을 swift 에서는 다음과 같이 할 수 있다. 39> let l = Array(0.. l[0.. l[3.. Array(l[7...]) $R25: [Int] = 3 values { [0] = 7 [1] = 8 [2] = 9 } 43> l[7..