From 764cadd8f9d1fff812971b84ec086243bf897c2a Mon Sep 17 00:00:00 2001 From: Jean Chang Date: Fri, 27 Sep 2024 10:17:11 -0400 Subject: [PATCH] complete list transition to amino_acids --- episodes/lists.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/episodes/lists.md b/episodes/lists.md index d5068da..11248b6 100644 --- a/episodes/lists.md +++ b/episodes/lists.md @@ -63,9 +63,9 @@ The first three items: ['alanine', 'leucine', 'cysteine'] Use an index value along with your list variable to replace a value from the list. ```python -print(f'List was: {metadata}') -metadata[0] = 'methionine' -print(f'List is now: {metadata}') +print(f'List was: {amino_acids}') +amino_acids[0] = 'methionine' +print(f'List is now: {amino_acids}') ``` ```output