我有一个Python脚本,必须为几种情况执行Fortran代码。代码需要输入文件作为字符串输入。
Psuedo代码
<script>
function encrypt() {
document.getElementById("stringOutput").value = CryptoJS.AES.encrypt("lorem ipsum", "hAPgT2mj0ZzD1epO").toString();
}
</script>
<textarea id="stringOutput" cols="100" rows="10"></textarea>
<button type="button" onClick="encrypt()">Encrypt that!</button>
这里的情况是一个变量,因为每个测试用例都不同。 这不起作用,因为我需要将字符串(input_file)转换为文件名。
答案 0 :(得分:1)
因此,您使用新的string.format约定来传递变量:
input_file="input_{0}.in".format(case)
os.system=("./a.out {0}".format(input_file))