この記事では主にPythonでサポートされているタブキー補完コマンドを詳しく紹介しますので、興味のある方は参考にしてみてください
cat tab
#!/usr/bin/python
import sys
import readline
import rlcompleter
import atexit
import os
readline.parse_and_bind('tab:complete')
histfile = os.path.join(os.environ['HOME'],'.pythonhistory')
try:
readline.read_history_file( histfile)
IOError を除く:
pass
atexit.register(readline.write_history_file,histfile)
del os,histfile,readline,rlcompleter
以上がPython のタブ補完コマンドのサポートについて知っておくべきことの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。