python-mode
Edit, debug, develop, run Python programs
파일 탐색기
- auto-complete-pycomplete.el
- company-pycomplete.el
- pycomplete.el
- pycomplete.py
- test_pycomplete.py
- fundocu2infoformats.el
- fundocu2infoformats.sh
- py-report-comint-variable-setting.el
- python-components-create-menu.el
- python-mode-create-menu.el
- python-mode-utils.el
- python-mode-vars.el
- python-mode-write-menu.el
- python-mode-write-tests.el
- python-shell-install-example-buffer.el
- README
- commands-auto-complete-pycomplete.org
- commands-auto-complete-pycomplete.rst
- commands-autopair.org
- commands-autopair.rst
- commands-company-pycomplete.org
- commands-company-pycomplete.rst
- commands-py-smart-operator.org
- commands-py-smart-operator.rst
- commands-pycomplete.org
- commands-pycomplete.rst
- commands-python-mode.org
- commands-python-mode.rst
- commands-smart-operator.org
- commands-smart-operator.rst
- variables-python-mode.org
- variables-python-mode.rst
- python-components-skeletons.el
- doctest-mode.el
- py-completion-tests.el
- py-ert-always-split-lp-1361531-tests.el
- py-ert-always-split-tests.el
- py-ert-beginning-tests.el
- py-ert-delete-tests.el
- py-ert-end-tests.el
- py-ert-execute-block-test.el
- py-ert-execute-region-test.el
- py-ert-execute-region-tests.el
- py-ert-extra-tests.el
- py-ert-fill-tests.el
- py-ert-font-lock-test.el
- py-ert-font-lock-tests.el
- py-ert-forward-tests.el
- py-ert-function-tests.el
- py-ert-hide-tests.el
- py-ert-indent-tests-1.el
- py-ert-indent-tests.el
- py-ert-interactive-tests.el
- py-ert-just-two-split-lp-1361531-tests.el
- py-ert-misc-tests.el
- py-ert-navigation-tests.el
- py-ert-position-functions-test.el
- py-ert-scope-tests.el
- py-ert-variablen-tests.el
- py-executable-python-tests.el
- py-execute-region-commandp-test.el
- py-execute-region-commandp-tests.el
- py-interactive-tests.el
- py-non-travis-tests.el
- py-setup-ert-tests.el
- py-shell-arg-ert-tests.el
- py-shell-completion-tests.el
- py-shell-ert-tests.el
- py-split-just-two-window-on-execute-test.el
- py-split-window-on-execute-lp-1361531-test.el
- py-split-window-on-execute-test.el
- python-extended-executes-test.el
- python-mode-ert-tests-1.sh
- python-mode-ert-tests-2.sh
- python-mode-ert-tests.sh
- python-mode-syntax-test.el
- python-mode-test.el
- python-mode-tests-2.sh
- python-mode-tests.sh
- syntax-test.sh
- test-triple-strings.py
- UnicodeEncodeError-lp-550661-test.py
- UnicodeEncodeError-python2-lp-550661-test.py
- UnicodeEncodeError-python3-lp-550661-test.py
- .cvsignore
- basics.ht
- customize.ht
- index.ht
- links.h
- Makefile
- related.ht
- .cvsignore
- .rsync-excludes
- calcroot.py
- index.ht
- links.h
- make.rules
- Makefile
- PMGenerator.py
- byte-compile-directory.sh
- CONTRIBUTING.md
- CREDITS
- INSTALL
- INSTALL-INFO-FILES
- IPYTHON
- LICENSE
- MANIFEST.in
- NEWS
- PROBLEMS.org
- py-setup-ert-tests.el
- pyflakespep8.py
- python-mode-compile.sh
- python-mode-pkg.el
- python-mode.el
- README-PYMACS.org
- README.md
- README_AUTOPAIR.org
- README_DEVEL.org
- run-tests.sh
- setup.py
- ToDo.org
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
링크
예시
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
select
설명 보기 ▼
select
메뉴를 생성하기 위한 Bash 내장 구조.
더 많은 정보: <https://www.gnu.org/software/bash/manual/bash.html#index-select>.
select {{word}} in {{apple orange pear banana}}; do echo ${{word}}; done
개별 단어로 메뉴 생성:
select {{line}} in $({{command}}); do echo ${{line}}; done
다른 명령의 출력으로 메뉴 생성:
PS3="{{Select a file: }}"; select {{file}} in *; do echo ${{file}}; done
`select`의 프롬프트 문자열을 지정하고 현재 디렉토리에서 파일이나 폴더를 선택하는 메뉴 생성:
// repository documentation
Was this content helpful?
(0 ratings)
