This is not a Python Starter Tutorial but advanced Python Tips in a Random Order.
We have the following 3 Python lists.

How to extract and displays the list contents?
Option 1:
Here is one option to display the content of all the three lists.
Using the index numbers, the list items are displayed below.

Here is the option 2:

If you look at the for loop in the above Python code, you can see that the 3 items in the list is extracted using the for loop.
The first item is extracted as ‘name’, middle item is extracted as ‘title’ and the last item is extracted as ‘phone’.
for (name, title, phone) in First, Second, Third:
The for loop then executes all the 3 lists (First, Second and Third) to get the name, title and phone which is being displayed using the print statement.
Bonus option:
We have another option to get the same result.
If we create another list from the 3 lists provided earlier ( named as all_list). Then we will use the same for loop to get the list items extracted.

That’s all for this session. See you next time.