This is the presentation associated with the python Tuple Unpacking video.
Python Tuple Unpacking Video Question
This is the question that was asked in the python tuple unpacking video:
Question:
Write the code to produce the desired output:
names = ("Bill", "Steve","Tim", "John")
Desired Output:
firstname = Bill
lastname = John
Others = ['Steve', 'Tim']