About 3,270,000 results
Open links in new tab
  1. How to Execute a Python Script in Notepad++? - Stack Overflow

    I prefer using Notepad++ for developing, How do I execute the files in Python through Notepad++?

  2. Run Python on Notepad++, execute screen - Stack Overflow

    Aug 22, 2022 · to run your python script in notepad++ is quite simple: make sure your python is correctly installed, open your console and type python, you should see something similar to the following (it …

  3. How do you run a python script from within notepad++?

    When I'm using textmate, I simply hit "apple+r" and the program gets interpreted. How can I run a program from within notepad++? I see that F5 is for "Run", but pointing that to Python.exe simply...

  4. Automatic indentation for Python in Notepad++ - Stack Overflow

    Feb 18, 2017 · I played a bit with python in Notepad++ and I had a problem with the tab. Since in python your indentation is really important but notepad ++ put space instead of a tab.

  5. Python Syntax Highlighting in Notepad++ - Stack Overflow

    Feb 20, 2013 · 4 I know Notepad++ supports Python but under the language menu I cannot find it! At "P," it only lists Pascal, Perl, PHP, Postscript, PowerShell, and strangely, Properties. I am writing …

  6. comments - Commenting code in Notepad++ - Stack Overflow

    Sep 15, 2017 · Actually, I wanted to block comment my code written in Python or in fact any other language, in Notepad++ editor. May be that was not quite clear from my question. But Niels's and …

  7. python - Notepad++ indentation messes up - Stack Overflow

    I'm coding in Python and I really like Notepad++. However, off late when I use tab to indent, it seems fine in Notepad++, but when I run the program I get an indentation error, and when I check my ...

  8. python - Directing print output to a .txt file - Stack Overflow

    130 Is there a way to save all of the print output to a txt file in python? Lets say I have the these two lines in my code and I want to save the print output to a file named output.txt.

  9. Create a python file using cmd in windows - Stack Overflow

    Jul 16, 2015 · Given that you are in the working directory, you can create Python file via Windows cmd using following command: echo print ("Hello") > myFile.py Echo prints the text as an argument and > …

  10. Debugging Python code in Notepad++ - Stack Overflow

    Dec 19, 2014 · I use Notepad++ for writing and running Python scripts. It is a great text editor, except for debugging. Is there a way to step through the code, use break points, view variable values etc. in …