top of page
Genetic Code
Central Dogma
Lists
For Loops
Loops & If Statements
Checkpoint
Summary
Summary
In this lesson, we've learned about the following:
-
Genetic Code
-
Central Dogma
-
Lists
-
For Loops
-
For Loops & If Statements
Let's put together everything we've learned into one final exercise:
1 amino_acids = ['alanine', 'arginine', 'asparagine', 'aspartic acid', 'cysteine', 'glutamic acid', 'glutamine', 'glycine', 'histidine', 'isoleucine', 'leucine', 'lysine', 'methionine', 'phenylalanine', 'proline', 'serine', 'threonine', 'tryptophan', 'tyrosine', 'valine']
2
3 print(amino_acids[0])
4
5 print(len(amino_acids))
bottom of page