if df[df["Accession"]==i]["Locus tag"]:
print(i, mw , df[df["Locus tag"]])
I have fasta file with genes id if this id equal to accession in csv file i need to print locus tag from csv file
if df[df["Accession"]==i]["Locus tag"]:
print(i, mw , df[df["Locus tag"]])
I have fasta file with genes id if this id equal to accession in csv file i need to print locus tag from csv file