Python 命令自動補全

學習python再import模塊時,對模塊有時候不太瞭解的,就須要看看此模塊有那些命令。python

1.建立tar.py文件linux

[root@nginx-master python2.6]# cat tar.py
#!/usr/bin/env python
# python startup file
import sys
import readline
import rlcompleter
import atexit
import os
# tab completion
readline.parse_and_bind('tab: complete')
# history file
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
[root@nginx-master python2.6]# nginx

2,查看一下模塊相關文件的存取位置並把剛剛建立的tar.py文件移動指定位置ide

[root@nginx-master python2.6]# python
Python 2.6.6 (r266:84292, Jul 23 2015, 15:22:56)
[GCC 4.4.7 20120313 (Red Hat 4.4.7-11)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import sys
>>> sys.path
['', '/usr/lib64/python26.zip', '/usr/lib64/python2.6', '/usr/lib64/python2.6/plat-linux2', '/usr/lib64/python2.6/lib-tk', '/usr/lib64/python2.6/lib-old', '/usr/lib64/python2.6/lib-dynload', '/usr/lib64/python2.6/site-packages', '/usr/lib64/python2.6/site-packages/gtk-2.0', '/usr/lib/python2.6/site-packages', '/usr/lib/python2.6/site-packages/setuptools-0.6c11-py2.6.egg-info']學習

移動文件到指定位置測試

[root@nginx-master python2.6]# mv tar.py /usr/lib64/python2.6/orm

到此結束,讓我測試一下命令補全的快感吧!ip

[root@nginx-master python2.6]# python
Python 2.6.6 (r266:84292, Jul 23 2015, 15:22:56)
[GCC 4.4.7 20120313 (Red Hat 4.4.7-11)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import tar
>>> import os
>>> os.
Display all 244 possibilities? (y or n)  #列出OS.所支持的所有命令的。it

相關文章
相關標籤/搜索