क्या एक सूची में स्ट्रिंग आइटम्स को एक स्ट्रिंग में बदलने का एक सरल तरीका है? क्या मैं str.join()
फ़ंक्शन का उपयोग कर सकता हूं ?
जैसे यह इनपुट है ['this','is','a','sentence']
और यह वांछित आउटपुट हैthis-is-a-sentence
sentence = ['this','is','a','sentence']
sent_str = ""
for i in sentence:
sent_str += str(i) + "-"
sent_str = sent_str[:-1]
print sent_str
'-'.join(sentence)