Horje
how to open an external file in python Code Example
how to open an external file in python
import subprocess    

path_to_notepad = 'C:\\Windows\\System32\\notepad.exe'
path_to_file = 'C:\\Users\\Desktop\\hello.txt'

subprocess.call([path_to_notepad, path_to_file])




Python

Related
choose random index from list python Code Example choose random index from list python Code Example
convert array to dataframe python Code Example convert array to dataframe python Code Example
get last year of today python Code Example get last year of today python Code Example
pandas create column from another column Code Example pandas create column from another column Code Example
timedelta year python Code Example timedelta year python Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
7