Ändern Sie das Programm so, dass es auch die Anzahl der A-, T-, C- und G -Zeichen in der Sequenz in Python druckt

A = "GATTACA"
for i in ['A','C','G','T']:
    n = 0
        for j in A:
            if(i == j):
                n += 1
    print(i, "=", n)
Determined Donkey