Python and Intellisense

前端 未结 16 812
南方客
南方客 2020-12-02 09:33

Is there an equivalent to \'intellisense\' for Python?

Perhaps i shouldn\'t admit it but I find having intellisense really speeds up the \'discovery phase\' of learn

相关标签:
16条回答
  • 2020-12-02 10:28

    Wingware for example implements auto-completion, see http://wingware.com/doc/edit/auto-completion .

    0 讨论(0)
  • 2020-12-02 10:28

    For emacs and VI there's also https://github.com/tkf/emacs-jedi.

    0 讨论(0)
  • 2020-12-02 10:30

    Well, I think the most dynamic way to learn Python is to use iPython.

    You got autocompletion when using tab, dynamic behaviour because it's a shell and you can get the full documentation of any object / method typing :

    object.method ?
    

    When developping, I agree that PyDev is cool. But it's heavy, so while learning, a text editor + iPython is really nice.

    0 讨论(0)
  • 2020-12-02 10:32

    IronPython is the way to go. Visual Studio has the best intellisense support and you can utilize that using IronPython

    0 讨论(0)
提交回复
热议问题