Python造数据模板
Posted n-s-p
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python造数据模板相关的知识,希望对你有一定的参考价值。
注:需要下载cyaron第三方库!!!
from cyaron import *
#i从1循环到3
for i in range(1,4):
#创建文件,文件名为“heat”
test_data=IO(file_prefix="heat", data_id=i)
#制造两个10以内的数
s=randint(1,10)
t=randint(1,10)
#将数据输出到in文件里
test_data.input_writeln(s, t)
#运行std,并将输出数据输到out文件里
test_data.output_gen("D:\std_binary.exe")
以上是关于Python造数据模板的主要内容,如果未能解决你的问题,请参考以下文章