422
I have a list [1,2,3,4] and I'm trying to print it. But it is always printing like [1,2,3,4] How can i remove those brackets?
[1,2,3,4]
You can simply do that like,
a = [1,2,3,4] print(*a, sep=","]