3

Anyone know any good python programming software like to type the code and run it?

Comments
  • 1
    PyCharm, by JetBrains. They make, by far, the best IDEs in the market. And if I recall correctly, the have a free version of PyCharm too.
  • 1
  • 0
    What you are looking for is eather a text editor, where you can just type text, or an IDE (Integrated Development Environment). As you dont seem very techy (yet) i am going to assume you are on windows. Good text editors are: Notepad++, Atom, Sublime Text 3, Gedit and Geany. And IDE is overkill for you, as it includes a lot of features for giant applications and other collaborative stuff like version control software, etc.
  • 1
    @vortexman100 I havr atom and notepad++ but I don't know how to run code on them
  • 0
    @programmingTrtl You cant, i have a console running beside them. Just open powershell, navigate to the folder with "cd <folder>" and type the name of your python script.
  • 1
    @vortexman100 ehhh okay I will see if I can find it
  • 1
    @programmingTrtl if python is installed on your computer just: Open command prompt, cd folder_name, type python name_of_file to run the file.
  • 0
    Geany is a text editor + compiler which can run codes like c, cpp, java and python.

    It's very lightweight and a compiler too.
  • 1
    @aritzh PyCharm Community is the free edition.
  • 0
    Visual studio code
Add Comment