I learned about Tuples in Python today, which basically are immutable Lists (Arrays).
Interesting to see how different languages approach the same concepts. In Ruby, you can use freeze to make an object immutable, and in Python, you have to use another type.
I might be spoiled by working with Ruby & Rails exclusively in the back-end for the last couple of years but for now, I prefer the Ruby way 😜