我有以下文件。为什么当我Ctrl-Space
在“r.”之后按下时代码完成不运行?它在红色框中显示“没有建议”。
(程序运行和输出:200)
__author__ = 'hape'
import urllib.request
import urllib.response
print("Starting")
r = urllib.request.urlopen("http://www.python.org")
r. <------------ No code completion, why not?!
print (r.getcode())
之后r.
,代码完成没有弹出,为什么?