Answers for "how to run python program using notepad"

4

Execute Python in Notepad++

# Go to Run and Run with an external Program in Notepad++
# Change the Python Path but not the brackets.
# You can save this command in Notepad++ with a Hotkey
C:Python26python.exe "$(FULL_CURRENT_PATH)"
#   Python Path           Dont Change this
# Put -i after the path to keep the console open instead of closing it instant.
Posted by: Guest on September-22-2020
1

run python notepad++

# Press F5 And Input To Run
#for python 2
py -2 -i "$(FULL_CURRENT_PATH)"
#for python 3
py -3 -i "$(FULL_CURRENT_PATH)"
Posted by: Guest on August-18-2021

Code answers related to "how to run python program using notepad"

Python Answers by Framework

Browse Popular Code Answers by Language