From c3cebba832d2be009f9728a5c2cd0f7a48469b1b Mon Sep 17 00:00:00 2001 From: Haozhe Zhang <104337520+DFwJZ@users.noreply.github.com> Date: Tue, 24 Sep 2024 12:31:25 -0700 Subject: [PATCH] fix(curriculum): Add missing quote in Python list example (#56274) --- .../66694bfa435cef241f6f9a68.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/07-scientific-computing-with-python/learn-lambda-functions-by-building-an-expense-tracker/66694bfa435cef241f6f9a68.md b/curriculum/challenges/english/07-scientific-computing-with-python/learn-lambda-functions-by-building-an-expense-tracker/66694bfa435cef241f6f9a68.md index b3d3b6340cf..d0654577288 100644 --- a/curriculum/challenges/english/07-scientific-computing-with-python/learn-lambda-functions-by-building-an-expense-tracker/66694bfa435cef241f6f9a68.md +++ b/curriculum/challenges/english/07-scientific-computing-with-python/learn-lambda-functions-by-building-an-expense-tracker/66694bfa435cef241f6f9a68.md @@ -18,7 +18,7 @@ empty_list = [] The list is characterized by the square brackets around all the values, and a comma between the values, like: `["A", "happy", "list"]`. If the list does not contain any values, then it is an empty list: `[]`. -A list can contain different data types: `[1, "Up", ["Down", "Twice]]`. That includes all possible data types. It can also contain another list! +A list can contain different data types: `[1, "Up", ["Down", "Twice"]]`. That includes all possible data types. It can also contain another list! Create a variable called `my_list` and assign to it an empty list.