Answers for "python amino acid dictionary"

0

python amino acid dictionary

>>> triples = [rna[i:i+3] for i in range(0, len(rna), 3)]
>>> print triples
['UUU', 'UCU', 'UAU', 'UGU', 'UUC', 'UCC']
Posted by: Guest on September-06-2020

Python Answers by Framework

Browse Popular Code Answers by Language