0
why is output in list?
a,b,c,*d = (1,2,3,4,5,6,7,8,9) print(a) print(b) print(c) print(d) # why is output in lists?
1 Answer
+ 2
KB Is đ
żïž
*d means rest value of tuple which will be a list
a,b,c,*d = (1,2,3,4,5,6,7,8,9) print(a) print(b) print(c) print(d) # why is output in lists?