👻 Check our latest review to choose the best laptop for Machine Learning engineers and Deep learning tasks!
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 ["this","is","a","sentence"]
and this is the desired output 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
👻 Read also: what is the best laptop for engineering students?
We hope this article has helped you to resolve the problem. Apart from How to concatenate items in a list to a single string?, check other code Python module-related topics.
Want to excel in Python? See our review of the best Python online courses 2023. If you are interested in Data Science, check also how to learn programming in R.
By the way, this material is also available in other languages:
- Italiano How to concatenate items in a list to a single string?
- Deutsch How to concatenate items in a list to a single string?
- Français How to concatenate items in a list to a single string?
- Español How to concatenate items in a list to a single string?
- Türk How to concatenate items in a list to a single string?
- Русский How to concatenate items in a list to a single string?
- Português How to concatenate items in a list to a single string?
- Polski How to concatenate items in a list to a single string?
- Nederlandse How to concatenate items in a list to a single string?
- 中文 How to concatenate items in a list to a single string?
- 한국어 How to concatenate items in a list to a single string?
- 日本語 How to concatenate items in a list to a single string?
- हिन्दी How to concatenate items in a list to a single string?
Boston | 2023-03-21
Maybe there are another answers? What How to concatenate items in a list to a single string? exactly means?. Will use it in my bachelor thesis
Abu Dhabi | 2023-03-21
Thanks for explaining! I was stuck with How to concatenate items in a list to a single string? for some hours, finally got it done 🤗. Will get back tomorrow with feedback
California | 2023-03-21
Maybe there are another answers? What How to concatenate items in a list to a single string? exactly means?. Checked yesterday, it works!