Autosave: 2024-06-28 14:15:04

This commit is contained in:
thomasabishop 2024-06-28 14:15:04 +01:00
parent 8e71556cf7
commit aeed04e3fd
2 changed files with 1 additions and 1 deletions

Binary file not shown.

View file

@ -28,7 +28,7 @@ There are three main types of `for` loop in Python and they all use the
```py ```py
fruits = ["apple", "banana", "cherry"] fruits = ["apple", "banana", "cherry"]
for (fruit in fruits): for fruit in fruits:
print(fruit) print(fruit)
``` ```