哪个 Python IDE 具有 Visual Studio 功能?

2022-01-20 00:00:00 python visual-studio editor ide

问题描述

我正在寻找具有 Visual Studio 功能的 Python IDE.在经历了类似的问题和阅读评论之后,我几乎看不到以下两个功能被提及:

I am searching for a Python IDE with visual studio features. After going through similar questions and reading reviews, I hardly see the following two features mentioned:

  1. goto 定义 - 例如从调用方法的地方到它的定义(可能该类在另一个模块中).
  2. 查找所有引用 - 在 IDE 中以交互方式完成类似git grep method_name("的操作.

没有它们,编码是如此痛苦.你有遇到过具备以上两个功能的python IDE吗?

Coding is so painful without them. Have you come across any python IDE with the above two features?

当然,IDE 需要具备基本功能:

of course, the IDE need to have the essential features:

  • 代码自动补全
  • 集成调试
  • 基本的 IDE 功能,如语法高亮、错误高亮、智能缩进、括号匹配等.

解决方案

何不看精彩PyCon 2011:Python IDE 面板!

您可以使用 Python 工具,它可以让您在 Microsoft Visual Studio 中编写 Python.PyCharm, Komodo IDE 或 WingWare 也应该符合要求.

You can use Python Tools which lets you program Python in Microsoft Visual Studio. PyCharm, Komodo IDE, or WingWare should all fit the bill as well.

相关文章