Join a List of Strings into a Single String in Python

  • Post category:List

Joining a list of strings into a single string is a common task in Python programming. In this blog post, we’ll explore different code examples that demonstrate how to concatenate the elements of a list into a single string efficiently.

Example 1:

words = ['Hello', 'world', '!']
message = ''.join(words)
print(message)

Output: HelloWorld!

Example 2:

numbers = [1, 2, 3, 4, 5]
number_string = ''.join(str(num) for num in numbers)
print(number_string)

Output: 12345