1# Go to Run and Run with an external Program in Notepad++
2# Change the Python Path but not the brackets.
3# You can save this command in Notepad++ with a Hotkey
4C:\Python26\python.exe "$(FULL_CURRENT_PATH)"
5# Python Path Dont Change this
6# Put -i after the path to keep the console open instead of closing it instant.
1# Press F5 And Input To Run
2#for python 2
3py -2 -i "$(FULL_CURRENT_PATH)"
4#for python 3
5py -3 -i "$(FULL_CURRENT_PATH)"
6