0

Possible Duplicate:
How do I add tab completion to the Python shell?

Is there an easy way to add code completion feature to a Python interpreter that is started on a unix console?

Community
  • 1
  • 1
Faruk Sahin
  • 7,916
  • 5
  • 26
  • 32

4 Answers4

0

You should really install something like ipython or bpython

pip install ipython

This will give you a much better python interpreter that offers code completion, history and other magical functions that will make your python experience much better!

Jakob Bowyer
  • 32,237
  • 8
  • 73
  • 89
0

Try using ipython which amoungst other things adds a shell which includes code completion to the intepreter.

mmmmmm
  • 31,464
  • 27
  • 87
  • 113
0

Yes! Take a look at bpython!

You should be able to install it with pip. I actually have it in my Linux distro as a package.

Keith
  • 40,128
  • 10
  • 53
  • 74
-4

Nope thats not possible, you need to use an IDE.

HelloUni
  • 448
  • 2
  • 5
  • 10