unpacking a list when assign python code example
Example 1: list unpacking python
def fun(a, b, c, d):
print(a, b, c, d)
# Driver Code
my_list = [1, 2, 3, 4]
# Unpacking list into four arguments
fun(*my_list)
Example 2: unpack a sequence into variables python
p = (1, 2)
x, y = p