How to concatenate items in a list to a single string?

后端 未结 11 1987
北荒
北荒 2020-11-21 05:59

Is there a simpler way to concatenate string items in a list into a single string? Can I use the str.join() function?

E.g. this is the input [\'t

11条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-11-21 06:11

    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) 
    
    
           
    

提交回复
热议问题