๐Ÿ”ขIterating with enumerate() and zip()WORKSHOP
1
2
3
4
5

Step 1

**enumerate()**: Use `enumerate()` to loop over a list and print each item with its index, like `0: apple`. Without enumerate, you'd need a manual counter. With it, you get both the index and value in one step.

โŒ˜ Enter (Mac) ยท Ctrl+Enter (Win/Linux)