Home > Article > Backend Development > What you must know about Python supports tab completion commands
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!