Hello,
My name is Eric and I am using python version 2.6
I am trying to write a program that decodes DNA codons. I have to prompt the user to enter a DNA sequence that is a multiple of 3 and have the program spit out the letters that each 3 letter string represents. Here's an example of what it should look like:
Input a DNA sequence: ACTCTAGCTTTG
---> TLAL
Using the DNA codon table at Wikipedia to find what proteins the 3 letters give. I am very lost on how to do this.
Please help!
My name is Eric and I am using python version 2.6
I am trying to write a program that decodes DNA codons. I have to prompt the user to enter a DNA sequence that is a multiple of 3 and have the program spit out the letters that each 3 letter string represents. Here's an example of what it should look like:
Input a DNA sequence: ACTCTAGCTTTG
---> TLAL
Using the DNA codon table at Wikipedia to find what proteins the 3 letters give. I am very lost on how to do this.
Please help!
Comment