This repository has been archived on 2022-12-28. You can view files and clone it, but cannot push or open issues or pull requests.
arags/loop.py
2020-01-17 20:34:14 +08:00

5 lines
239 B
Python
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import os
for i in range(1,1001):#运行次数 可以按照需要把第二个数字改成你想要的运行次数+1默认1000次
os.system('py draw.py')
#这个是重复运行的脚本单次运行只需要运行draw.py即可