the content of my tasks are "Write functions counting the DNA sequence of codon " ATG "
I did something like that but I do not know what is wrong with that
def seq(dna):
dna = dna.count("ATG")
print seq("ATGSDSGFAGEFRASFWET")
Please help me