It's always coming out 44 and it's not in order
Can you give me a hint of what I'm doing wrong? Or what can I do or study to fix it? What should I learn? ,<<
It's always coming out 44 and it's not in order
Can you give me a hint of what I'm doing wrong? Or what can I do or study to fix it? What should I learn? ,<<
odernation = customHash(someSequence)
for codon, cnt in d.items():
print('{}. {}: {}'.format(odernation,codon, cnt))
odernation
is only being computed once and then being printed in the for loop. The value isn't changing.