python os.system()

os.system()

  • 作用
    在系统中打开一个子进程执行系统命令
  • 用法
import os
os.system("语法")
  • 注意
    子进程执行一条命令后就会关闭
    需要执行多条命令时需要写在一起
os.system("语法1 && 语法2")

posted on 2022-03-28 21:39  阿斯利康闪电  阅读(181)  评论(0编辑  收藏  举报

导航