将多个输出保存在不同的文件中

时间:2011-08-01 16:09:20

标签: python filesystems store gnuplot

我有一个生成多个图的程序..现在我需要将每个图保存在不同的文件中,例如:file1,file2,file2,...

P.S:我正在使用Gnuplot来保存和生成图:

g('设置输出\" test.ps \"')

如何生成这些名称?

1 个答案:

答案 0 :(得分:1)

您需要使用字符串格式。最简单的选择是使用

g('set output \"test%d.ps\"' % n)`

并且增加n。