哪个 Python IDE 具有 Visual Studio 功能?

Which Python IDE has visual studio features?(哪个 Python IDE 具有 Visual Studio 功能?)
本文介绍了哪个 Python IDE 具有 Visual Studio 功能?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在寻找具有 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.

这篇关于哪个 Python IDE 具有 Visual Studio 功能?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Leetcode 234: Palindrome LinkedList(Leetcode 234:回文链接列表)
How do I read an Excel file directly from Dropbox#39;s API using pandas.read_excel()?(如何使用PANDAS.READ_EXCEL()直接从Dropbox的API读取Excel文件?)
subprocess.Popen tries to write to nonexistent pipe(子进程。打开尝试写入不存在的管道)
I want to realize Popen-code from Windows to Linux:(我想实现从Windows到Linux的POpen-code:)
Reading stdout from a subprocess in real time(实时读取子进程中的标准输出)
How to call type safely on a random file in Python?(如何在Python中安全地调用随机文件上的类型?)