Hey! If you love Python and building Python apps as much as I do, let's connect on Twitter or LinkedIn. I talk about this stuff all the time!

How to Make a String a List in Python

Learn how to convert strings into lists in Python, and discover the power of working with sequences in this comprehensive tutorial.| …


Updated May 11, 2023

|Learn how to convert strings into lists in Python, and discover the power of working with sequences in this comprehensive tutorial.|

What is a String?

Before we dive into converting strings to lists, let’s quickly define what a string is in Python.

A string is a sequence of characters, such as words or sentences. In Python, you can create a string using single quotes (') or double quotes ("").

Example:

my_string = "Hello World!"

What is a List?

Now, let’s talk about lists. A list is also a sequence in Python, but it can contain any type of object, not just characters.

Lists are denoted by square brackets [] and are often used to store collections of data.

Example:

my_list = [1, 2, 3, "Hello"]

Why Convert Strings to Lists?

So, why would you want to convert a string into a list? There are several reasons:

  • Easy access: With a list, you can easily access individual elements using their index (position in the sequence).
  • Flexibility: Lists allow you to store any type of object, giving you more flexibility than strings.
  • Modification: You can modify lists by adding or removing elements, which is not possible with strings.

Converting Strings to Lists

Now that we’ve covered the basics, let’s see how to convert a string into a list.

There are two common ways to do this:

Method 1: Using the list() function

You can use the built-in list() function in Python to convert any iterable (like a string) into a list.

Example:

my_string = "Hello World!"
my_list = list(my_string)
print(my_list)  # Output: ['H', 'e', 'l', 'l', 'o', ' ', 'W', 'i', 'r', 'd', '!']

As you can see, the list() function converts each character in the string into a separate element in the list.

Method 2: Using List Literals

Another way to create a list from a string is by using list literals. This method involves enclosing the characters of the string within square brackets.

Example:

my_string = "Hello World!"
my_list = [char for char in my_string]
print(my_list)  # Output: ['H', 'e', 'l', 'l', 'o', ' ', 'W', 'i', 'r', 'd', '!']

This method uses a technique called list comprehension to create the list. It’s similar to the list() function but provides more control over how the elements are created.

Conclusion

In this article, we’ve covered the basics of strings and lists in Python and shown you two common ways to convert a string into a list. Whether you’re using the built-in list() function or list literals with list comprehension, these techniques will help you work with sequences in your Python code.

By mastering these concepts, you’ll be able to write more efficient and effective code that takes advantage of the power of lists and strings in Python. Happy coding!

Stay up to date on the latest in Python, AI, and Data Science

Intuit Mailchimp