Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

Remove Brackets from List Using the * operator with the Separator method

inp_list =["1",'2','3','4','5','a']
print("Original list:",inp_list)
print("After removing brackets:",*inp_list, sep = ',')
Source by softhunt.net #
 
PREVIOUS NEXT
Tagged: #Remove #Brackets #List #Using #operator #Separator #method
ADD COMMENT
Topic
Name
6+1 =