How to Convert List to String in Python

To convert a list to a string in Python, you can use the join() function or string formatting.

The following examples show how to convert a list to a string in Python using these two methods.

Using join() Function

We can use the join() function to convert a list to a string.

Suppose we have the following list:

# Declare list
list1 = [25, 27, 45, 36, 30, 26]

# Convert list to string
string_lst = ', '.join(str(x) for x in list1)

# Show string list
print(string_lst)

Output: 👇️

25, 27, 45, 36, 30, 26

In this example, we use the join() function to convert the list list1 to a string string_lst. The output shows the string created from the numeric list using the join() function.

Using String Formatting

We can use string formatting to convert a list to a string.

Suppose we have the following list:

# Declare list
list1 = [25, 27, 45, 36, 30, 26]

# Convert list to string
string_lst = str(list1)

# Show string list
print(string_lst)

Output: 👇️

[25, 27, 45, 36, 30, 26]

In this example, we use string formatting to convert the numeric list list1 to a string string_lst. The output shows the string representation of the list using string formatting.

Conclusion

We can use the join() function or string formatting to convert a list to a string in Python. These methods provide a convenient way to transform lists into strings.