0

I am a beginner in python and I would like to be able to autocomplete without having to be writing the methods in the windows shell.

How do I show the methods the variable when I put a point?

Jean-François Fabre
  • 137,073
  • 23
  • 153
  • 219
molo32
  • 387
  • 1
  • 3
  • 6

1 Answers1

1

Install ipython and use that in the cmd prompt.

My screenshot is in MacOS but it should be pretty similar on Windows.

enter image description here

On windows:

pip install ipython

then ipython.exe can be found in scripts directory of python installation.

Jean-François Fabre
  • 137,073
  • 23
  • 153
  • 219
gdef_
  • 1,888
  • 9
  • 17