1 post
1
494
I started studying Python a short time ago, and created the following code: gene = open("AY365046.1.txt","r") g=0; a=0; c=0; t=0; gene.readline() for line in gene: line = line.lower() for char in…