Tag: Tuple

20 Python Concepts I Wish I Knew Way Earlier

There are lots of concepts we need to grasp in Python. And everyone learns them differently, in different sequences. Here are some things I wish I learnt much earlier when I was still a Python beginner. 1) Tuple Unpacking + Tuple Unpacking With * person = ['bob', 30, 'male'] ...