I have a list looks like below
list_val = ['1','2','3','4']
I want to remove the square bracket and single quotes from the list. I like to get the output as like below
list_new = 1,2,3,4
Is it possible? Looking forward for quick help. Thanks in advance.