what seems to be the problem with the code
l = [1,2,4,5,6,7,8] t = *l i have read that *l gives comma separated single values so the statement should be similar to t = 1,2,3,4,5,6,7 which is a tuple but following code gives the error
Traceback (most recent call last): File "<main.py>", line 4 SyntaxError: can't use starred expression here
t = tuple(l)