Python IDLE 自动提示功能



\Python27\Lib\idlelib\目录下


config-extensions.def文件修改等待时间


[AutoComplete]


enable=1


popupwait=2000(2000表示2秒,修改为0)


 


AutoComplete.py文件修改提示模块


import os


import sys


import string


在后面加载待提示的模块(import方式)


如:


import urllib


import urllib2


import re


import cookielib


import socket



猜你喜欢

转载自blog.csdn.net/xfyangle/article/details/75087516