diff --git a/.zk/notebook.db b/.zk/notebook.db index 272a831..4132067 100644 Binary files a/.zk/notebook.db and b/.zk/notebook.db differ diff --git a/zk/Loops_in_Python.md b/zk/Loops_in_Python.md index 47ceb89..aee72fa 100644 --- a/zk/Loops_in_Python.md +++ b/zk/Loops_in_Python.md @@ -28,7 +28,7 @@ There are three main types of `for` loop in Python and they all use the ```py fruits = ["apple", "banana", "cherry"] - for (fruit in fruits): + for fruit in fruits: print(fruit) ```