python中有没有vb中shell类似调用外部程序函数

python中有没有vb中shell类似调用外部程序函数

我想在python程序中调用外部exe和bat文件,不知道有没有类似vb中的shell函数。
请大家指点
万分感谢!!
os.system
谢谢
怎么写
例如我要调c:\123.exe
import os
os.system('c:/123.exe')
  有好多种方法,
import os
os.system
import win32api
win32api.shellexecute()