📜  如何在 python 代码示例中打开外部文件

📅  最后修改于: 2022-03-11 14:47:07.126000             🧑  作者: Mango

代码示例1
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])