diff --git a/Week_03/cheatsheets/cheatsheet_tuples_lists.ipynb b/Week_03/cheatsheets/cheatsheet_tuples_lists.ipynb index 447973a..7c2f5d6 100644 --- a/Week_03/cheatsheets/cheatsheet_tuples_lists.ipynb +++ b/Week_03/cheatsheets/cheatsheet_tuples_lists.ipynb @@ -204,7 +204,7 @@ } ], "source": [ - "# lists are immutable\n", + "# lists are mutable\n", "print(li)\n", "li[1] = 2 # this will change the second element's value to 2\n", "print(li)"