小编Hel*_*024的帖子

PyCharm:Intellisense 或自动完成不适用于 Python 3.5.2

我最近安装了 Python 3.5.2,然后是 PyCharm (IDE),但智能感知或自动完成在我的 Windows 10 中不起作用。

# Method 1: intellisense or auto-complete not working for below
city = input("Enter your City \n")
print(city)
print(city.)     *#<<<--- here not working when put a "." after "city"* variable
Run Code Online (Sandbox Code Playgroud)

快照 1

...但惊讶地发现它与以下代码一起工作正常:

myCity = "New York City"
print(myCity.upper())
Run Code Online (Sandbox Code Playgroud)

快照 2

python autocomplete pycharm python-3.x

5
推荐指数
1
解决办法
1万
查看次数

标签 统计

autocomplete ×1

pycharm ×1

python ×1

python-3.x ×1