[Python] Command Line Flags
ยท
๐ Python
Python Command Flag python -c - (command) ์ง์ ๋ช
๋ น์ด๋ฅผ ์
๋ ฅํด Python ์ฝ๋๋ฅผ ์คํ ex) python -c "import pandas as pd" python -m - (module) Python ๋ชจ๋์ ์คํฌ๋ฆฝํธ๋ก ์คํ. ex) 'python -m http.server' ํ์ฌ ๋๋ ํ ๋ฆฌ์์ HTTP ์๋ฒ ์คํ python -i - (interactive) ์คํฌ๋ฆฝํธ ์คํ ํ ๋ํํ ๋ชจ๋๋ก ์ง์
ex) ์คํฌ๋ฆฝํธ ์คํ ํ interpreter๋ก ์ง์
python -O - (Optimize) ์ต์ ํ ๋ชจ๋๋ฅผ ํ์ฑํ, assert๋ฌธ์ ์ ๊ฑฐํ๊ณ `__debug__`๋ฅผ 'False'๋ก ์ค์ python -B - (bytecode) .pyc ํ์ผ์ ์์ฑํ๋ ๊ฒ์ ๋ฐฉ์ง. ๋ณดํต ๊ฐ๋ฐ ์ค..