L = [1,2,3] q = " ".join(str(x) for x in L) print(q) # as you see input is = L = [1,2,3] # when you run the code output = 1 2 3
b