1.打开文件,若文件不存在则为新建
f = open('路径文件名', '文件读写格式')
2.写入文件
f.write(…)
格式
XXX = "%s,%s,%d\n" % (ver, user, id)
3.关闭文件
f.close()