我是Python的初学者,我需要以csv / xlsx格式导出函数输出。 请看我的代码。 我需要将我的pixel2coord函数的输出打印到csv。谢谢
package.json
答案 0 :(得分:0)
这是您感兴趣的代码:
if __name__ == "__main__":
file=open("file.csv","w") ## open file in write mode
for row in range(0,rows):
for col in range(0,colms):
x,y = pixel2coord(col,row)
print "({},{})".format(x,y)
lat= ## x or y
long= ## x or y
file.write("{};{}\n".format(lat,long)) ## write each coordinate comma-separated
PS:如果您是美国人,可以使用逗号分隔的分号(在字符串中),那么我使用的是欧洲风格的csv(分号分隔)