pythonの自動補完
594 ワード
新しいpythonstartupファイル
はい.profileファイルに
py 3 compileを使用してファイルをコンパイルし、python 3+ファイル名を使用して実行できます.
# python startup file
import readline
import rlcompleter
import atexit
import os
# tab completion
readline.parse_and_bind('tab: complete')
# history file
histfile = os.path.join(os.environ['home'], '.pythonhistory')
try:
readline.read_history_file(histfile)
except ioerror:
0
atexit.register(readline.write_history_file, histfile)
del os, histfile, readline, rlcompleter
はい.profileファイルに
export PYTHONSTARTUP=$HOME/.pythonstartupfile
を書き込むpy 3 compileを使用してファイルをコンパイルし、python 3+ファイル名を使用して実行できます.