Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

PyCharm: Intellisense or auto-complete not working with Python 3.5.2

I have recently installed Python 3.5.2 then PyCharm (IDE), but intellisense or auto-complete not working in my 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

Snapshot 1

...but surprised to see that it works fine with below code:

myCity = "New York City"
print(myCity.upper())

Snapshot 2

like image 721
HelloWorld024 Avatar asked Jan 25 '17 16:01

HelloWorld024


1 Answers

Finally it working now:

  1. I had to install the Python 3.4.1 for my PyCharm 2016.3.2

  2. Go to File menu >> Settings... >> Project: Python Programs >> Project Interpreter >> now follow below screenshot:

Screenshot

...but not sure that why it was not working with Python 3.5? ---> Thank you to @Pavel Karateev for the helpful update.

like image 150
HelloWorld024 Avatar answered Sep 29 '22 13:09

HelloWorld024