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

What you must know about Python supports tab completion commands

高洛峰
Release: 2017-03-28 17:07:55
Original
2323 people have browsed it

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!

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template