标签:python
1.tab功能脚本
[root@localhost python]# cat tab.py
#!/usr/bin/python
import sys
import readline
import rlcompleter
import os
# tab completion
readline.parse_and_bind(‘tab: complete‘)
# history file
histfile = os.path.join(os.environ[‘HOME‘], ‘.pythonhistory‘)
2.导入
在脚本当前目录下,执行python,然后import
import tab
本文出自 “Linux” 博客,请务必保留此出处http://520and519.blog.51cto.com/2254416/1581838
标签:python
原文地址:http://520and519.blog.51cto.com/2254416/1581838