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

后端 未结 11 2027
北荒
北荒 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条回答
  •  眼角桃花
    2020-11-21 06:04

    Although @Burhan Khalid's answer is good, I think it's more understandable like this:

    from str import join
    
    sentence = ['this','is','a','sentence']
    
    join(sentence, "-") 
    

    The second argument to join() is optional and defaults to " ".

    EDIT: This function was removed in Python 3

提交回复
热议问题