我想根据不同的ID号指定文件名。如何根据不同的id值设置不同的文件名?
id = args.bdp_id
filename = "./temp/vtx_vel%d.dat", id
print (filename)
答案 0 :(得分:3)
你可以这样做:
filename ="./temp/vtx_vel"..id..".dat"
答案 1 :(得分:3)
如果您想使用sprintf样式替换,请参阅string.format:
filename = string.format("./temp/vtx_vel%d.dat", id)