Hi
Is it possible to Concatenate/Append list of elements into a single string as shown below ?
I/P:
list = ['ID','1','1','2 ']
O/P:
'ID112'
I dont want to travese the individual element by element in a list and concatenate the string to get the final string
-PSB
Is it possible to Concatenate/Append list of elements into a single string as shown below ?
I/P:
list = ['ID','1','1','2 ']
O/P:
'ID112'
I dont want to travese the individual element by element in a list and concatenate the string to get the final string
-PSB
Comment