Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

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.
Comment

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)"
Comment

PREVIOUS NEXT
Code Example
Python :: sys.path.append python 
Python :: how to give autocomplete in python 
Python :: pathlib path get filename with extension 
Python :: python check tuple length 
Python :: how to split text into list python by characters 
Python :: chatbot python 
Python :: pandas to dictionary 
Python :: check if point is inside polygon python 
Python :: pyspark rdd filter 
Python :: pandas string manipulation on column 
Python :: 3 dimensional array numpy 
Python :: python get list of file and time created 
Python :: how to run .exe from python 
Python :: cd in python 
Python :: menubar pyqt 
Python :: get the current date and time in python 
Python :: en_core_web_sm 
Python :: qtablewidget clear python 
Python :: takes 1 positional argument but 2 were given python 
Python :: one line if statement without else 
Python :: python django model range validation 
Python :: how to multiply a string in python 
Python :: dt.weekday_name 
Python :: python plot groupby colors 
Python :: python create directory if non existent 
Python :: pandas split dataframe into chunks with a condition 
Python :: read a file with pandas 
Python :: opencv shift image python 
Python :: time difference between timestamps python 
Python :: increase axis ticks pyplot 
ADD CONTENT
Topic
Content
Source link
Name
2+4 =