我一直在尝试将 Python 中嵌套的“while”循环函数的输出转换为文本文件。我知道“写入文件”是:
TheFile=open("C:/test.txt","w")
TheFile.write("Hello")
TheFile.close()
但是,当想要将我的纬度和经度坐标嵌套循环的输出输出到文本文件中时,我应该使用什么?我能够从打印功能中得到我想要的东西,但似乎无法将它放入文本文件中......谢谢:
lat=-100
long=-190
while lat <=80:
lat=lat+10
long=-190
while long<=170:
long=long+10
print ("latitude:"+format(lat),"longitude:"+format(long))