【发布时间】:2020-04-15 08:27:23
【问题描述】:
导入操作系统 进口时间
当真时: os.system("速度测试.exe") Time.sleep(1000)
【问题讨论】:
标签: python-3.x networking automation automated-tests pytest
导入操作系统 进口时间
当真时: os.system("速度测试.exe") Time.sleep(1000)
【问题讨论】:
标签: python-3.x networking automation automated-tests pytest
试试这个
import os
import time
index = 0
while True:
os.system(f"speed test.exe > speed_text_{index}.txt")
index+=1
time.sleep(1000)
【讨论】: