Hello,how can I make the 2 for`s to work at the same time to find out the diferences between A and B ? Thank you.
A = "gtggcaacgtgc"
B = "gtagcagcgcgc"
C = "gcggcacagggt"
D = "gtgacaacgtgc"
def cromo(a, b):
inc = 0
for i in a:
for j in b:
if i != j:
inc = inc + 1;
print inc
cromo(A, B)