zoukankan      html  css  js  c++  java
  • python之 自动补全 tab

    1、在python中运行命令sys.path查看python路径

    >>> import sys
    >>> import tab
    Traceback (most recent call last):
    File "<stdin>", line 1, in <module>
    ImportError: No module named tab


    >>> 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/gst-0.10', '/usr/lib64/python2.6/site-packages/gtk-2.0', '/usr/lib64/python2.6/site-packages/webkit-1.0', '/usr/lib/python2.6/site-packages', '/usr/lib/python2.6/site-packages/setuptools-0.6c11-py2.6.egg-info']


    2、创建 tab.py 文件
    [root@mysql2 ~]# cd /usr/lib/python2.6/site-packages

    [root@mysql2 site-packages]# cat tab.py
    #!/usr/bin/python
    # python tab 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


    3、 导入 tab 模块
    >>> import tab
    >>> f
    file( filter( finally float( for format( from frozenset(

  • 相关阅读:
    相交链表 3种方法
    旋转数组 空间复杂度为O(1) 的2 种方法 + 1种空间复杂度O(n)
    各种sort排序总结
    我写过的bug...
    裸BFS题若干
    luence
    mysql 找出外键等约束
    mysql (8.0 或以下)数据 卸载, 安装, 创建用户, 赋权
    navicat 导入sql文件 的正确方法
    [转] git clone 远程分支
  • 原文地址:https://www.cnblogs.com/andy6/p/10197755.html
Copyright © 2011-2022 走看看