fix(curriculum): Add missing quote in Python list example (#56274)

This commit is contained in:
Haozhe Zhang
2024-09-24 12:31:25 -07:00
committed by GitHub
parent 7366c3b9ae
commit c3cebba832

View File

@@ -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.