Which Python IDE has visual studio features?(哪个 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:
- goto 定义 - 例如从调用方法的地方到它的定义(可能该类在另一个模块中).
- 查找所有引用 - 在 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 功能?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:哪个 Python IDE 具有 Visual Studio 功能?
基础教程推荐
- 与常规 dict 相比,Python manager.dict() 非常慢 2022-01-01
- 在 Celery 工作人员中捕获 Heroku SIGTERM 以优雅地关 2022-01-01
- numpy float:比算术运算中内置的慢 10 倍? 2022-01-01
- 尝试制作WhatsApp机器人 2022-01-01
- pyserial - 可以从线程 a 写入串行端口,是否阻塞从线程 b 读取? 2022-01-01
- 使用生成器和迭代器时 Python 多循环失败 2022-01-01
- 由Python将MP3转换为MIDI(类型错误:无法加载插件:mtg-Melodia:Melodia) 2022-01-01
- Discord.py 缺少必需的参数 2022-01-01
- 用 Python 编写 Fortran 无格式文件 2022-01-01
- 将 x 轴刻度更改为自定义字符串 2022-01-01
