## 1. Using return instead of print inside a loop This one bit me early on. I wanted to print every item in a list, so I wrote something like this: python def show_items(items): for item in items: return item show_items(["apple", "banana", "cherry"]) Run it, and...

Source: [Dev.to](https://dev.to/asma_dua_34/5-python-mistakes-i-keep-making-as-a-beginner-and-how-i-fixed-them-2mnc)

Sponsored