我正在使用 django,并且正在遍历不同键的列表,现在每个键我想将一些东西写入文件,所以我通过键获取对象。像:
for ids in Idlist:
try:
Loci = Locus.objects.get(Gen_ID=ids)
except:
#no locus info found
pass
try:
Itag = Itag_annotatie.objects.get(Gen_ID=ids)
except:
#no Itag info found
pass
try:
Ncbi = NCBI.objects.get(Gen_ID=ids)
except:
#No NCBI info found
pass
writer.writerow([Itag.Gen_ID, Itag.Solyc, Ncbi.defname, Loci.Lociname])
(示例代码)如何在每个 writerow 之后清空对象?每个键都是不同的。(没有用 django 创建数据库,实现了我自己的数据库)
所以我想在 Python 中清空对象实例,但不要从数据库中删除信息
亨克斯
编辑:我想清空 Ncbi、Loci 和 Itag 对象。