Is there a simpler way to concatenate string items in a list into a single string? Can I use the str.join() function?
str.join()
E.g. this is the input [\'t
[\'t
This will help for sure -
arr=['a','b','h','i'] # let this be the list s="" # creating a empty string for i in arr: s+=i # to form string without using any function print(s)