answer this question and show answer step by step c1asine00 This true for plants
ID: 3575921 • Letter: A
Question
answer this question and show answer step by step
Explanation / Answer
def dna_to_rna(dna):
rna = ''
for i in range(len(dna)):
if dna[i].upper()=='A':
rna += 'U'
elif dna[i].upper()=='C':
rna += 'G'
elif dna[i].upper()=='G':
rna += 'C'
elif dna[i].upper()=='T':
rna += 'A'
return rna
print dna_to_rna('ACGTTGCA')
Related Questions
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.