Home  >  Article  >  Backend Development  >  What you must know about Python supports tab completion commands

What you must know about Python supports tab completion commands

高洛峰
高洛峰Original
2017-03-28 17:07:552271browse

This article mainly introduces in detail the tab completion commands supported by python that you must know. Interested friends can refer to

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)
except IOError:
pass
atexit.register(readline.write_history_file,histfile)

del os,histfile,readline,rlcompleter

The above is the detailed content of What you must know about Python supports tab completion commands. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn