ItSolutionStuff.com

Python Split String into List of Characters Example

By Hardik Savani • October 30, 2023
Python

Today our leading topic is python convert string to list of characters. This post will give you simple example of how to convert string to list in python. I explained simply step by step how to split a string in python by character. you can understand a concept of python split string into list of characters.

There are several ways to convert strings into a list of characters in python. we will use split() and strip() functions to convert string into list. so let's see the below examples.

You can use these examples with python3 (Python 3) version.

let's see below a simple example with output:

Example 1:

main.py

myString = "Site ItSolutionStuff.com"
  
# Convert String into List
newList = list(myString.strip(" "))
  
print(newList)

Output:

['S', 'i', 't', 'e', ' ', 'I', 't', 'S', 'o', 'l', 'u', 't', 'i', 'o', 'n', 'S', 't', 'u', 'f', 'f', '.', 'c', 'o', 'm']

Example 2:

main.py

myString = "ItSolutionStuff.com is a best site!"
  
# Convert String into List
newList = myString.split(" ")
    
print(newList)

Output:

['ItSolutionStuff.com', 'is', 'a', 'best', 'site!']

Example 3:

main.py

myString = "One,Two,Three,Four,Five"
  
# Convert String into List
newList = myString.split(",")
  
print(newList)

Output:

['One', 'Two', 'Three', 'Four', 'Five']

I hope it can help you...

Tags: Python
Hardik Savani

Hardik Savani

I'm a full-stack developer, entrepreneur, and founder of ItSolutionStuff.com. Passionate about PHP, Laravel, JavaScript, and helping developers grow.

📺 Subscribe on YouTube

We Are Recommending You

How to Remove Duplicate Values from List in Python?

Read Now →

How to Get Unique Elements from List in Python?

Read Now →

How to Remove null Values from the List in Python?

Read Now →

Python Remove Empty String from List Example

Read Now →

Python Get Second Last Element of List Example

Read Now →

How to Get the Last Element of a List in Python?

Read Now →

How to Get First Element of List in Python?

Read Now →

How to Remove Last Element from List in Python?

Read Now →

How to Remove First Element from List in Python?

Read Now →

Python List Remove Element by Value Example

Read Now →

Python List Remove Element by Index Example

Read Now →

Python Delete File if Exists Example

Read Now →

Python Post Request with Basic Authentication Example

Read Now →