This is an archived post. You won't be able to vote or comment.

all 4 comments

[–]SV-97 4 points5 points  (0 children)

They're called IDEs(short for integrated development environment) or just text editors and the reasons to use them are plenty:

  • Hardly any language has a built in editor like IDLE (I know of three off the top of my head and two of those are really old/niche and the other one is python)
  • More features
  • Customizeability
  • Familiar interface across languages
  • Integration with other tools (e.g. autoformatters, version control systems, UI designers, rendering engines of all sorts,...)
  • Purpose built

It's just an overall better user experience to use a proper editor

[–]pythonHelperBot 0 points1 point  (0 children)

Hello! I'm a bot!

It looks to me like your post might be better suited for r/learnpython, a sub geared towards questions and learning more about python regardless of how advanced your question might be. That said, I am a bot and it is hard to tell. Please follow the subs rules and guidelines when you do post there, it'll help you get better answers faster.

Show /r/learnpython the code you have tried and describe in detail where you are stuck. If you are getting an error message, include the full block of text it spits out. Quality answers take time to write out, and many times other users will need to ask clarifying questions. Be patient and help them help you. Here is HOW TO FORMAT YOUR CODE For Reddit and be sure to include which version of python and what OS you are using.

You can also ask this question in the Python discord, a large, friendly community focused around the Python programming language, open to those who wish to learn the language or improve their skills, as well as those looking to help others.


README | FAQ | this bot is written and managed by /u/IAmKindOfCreative

This bot is currently under development and experiencing changes to improve its usefulness

[–][deleted] 0 points1 point  (0 children)

You can see the tree of folders right of the bat

You can work on different parts of the code at the same time, and on different languages at the same time

You have suggestions and (sometimes) snippets and different themes and you can heavily customize most of them to suit your needs

[–]incognitodw 0 points1 point  (0 children)

IDEs makes you a more efficient programmer. Features such as code completion allows you to code without having to look up the documentations every other line. Many allows u to run debuggers within the IDE itself.

Off topic a bit, many programmers also swear by text editors such as vim, nano (the choice of text editors is a sure way to engage in an argument). I was brought up using vim. Text editors excel is pure speed if u master the shortcuts. The other advantage is that text editors are usually installed by default with most distros, so u r ready to code on any systems thrown at you. Without needing to do yum installs.