我正在尝试在嵌入了 Ipython 并且可能没有所有可用库的软件(spaceclaim)中编写行。
我想要做的是在彼此下方的两行中写两个参数,但由于它们是数字,我应该为它们使用 str(a) 但我不能在两个参数之间使用 \n 来更改行。发生的情况是我只能将一个参数写入 txt 文件,但如果我想要多个参数,则 python 将所有参数连接在一行中并忽略逗号。
import os
loc=os.getcwd()
filename = loc1+ '\\params.txt'
tw= [str(A), str(B)]
outfile = open(filename, "w")
outfile.writelines(tw)
outfile.close()