I recently shared what I learned about lists, and while I was getting comfortable with them, I came across tuples. They just looked like lists with different brackets, they felt unnecessary… but I was wrong 😅

What I thought at first

I was mostly using lists like this:

numbers = [1, 2, 3]

Enter fullscreen mode