import os
# 等待notepad窗口退出后再继续执行
os.system('"notepad.exe"')
print('已经退出了notepad')
# 打开窗口后不等待窗口退出直接继续执行
os.startfile('"notepad.exe"')
print('不等待notepad退出直接继续执行')
相关文章
- 03-01Python打开程序的两种方法以及区别
- 03-01用Python 打开程序的两中方法
- 03-01【微信小程序】在js中导入第三方js或自己写的js,使用外部js中的function的两种方法 import和require的区别使用方法
- 03-01python sort和sorted的区别以及使用方法
- 03-01python正则表达式基础,以及pattern.match(),re.match(),pattern.search(),re.search()方法的使用和区别
- 03-01PythonDay02——编程语言、python介绍以及安装解释器、运行程序的两种方式、变量
- 03-01Python 中格式化字符串 % 和 format 两种方法之间的区别
- 03-01【微信小程序】在js中导入第三方js或自己写的js,使用外部js中的function的两种方法 import和require的区别使用方法 【外加:使用第三方js导出的默认function的调用方法】