Languages
[Edit]
EN

Python - convert string to character array

0 points
Created by:
Faith-W
503

In this article, we would like to show you how to convert string to character array in Python.

Quick solution:

text = 'ABC'

result = list(text)

print(result)  # ['A', 'B', 'C']

 

1. Practical example using list()

In this example, we simply use list() to convert text string to the character array.

text = 'ABC'

result = list(text)

print(result)  # ['A', 'B', 'C']

Output:

['A', 'B', 'C']

2. Alternative solution

In this example, we present how to convert text string to the character array without using list().

text = 'ABC'

print([x for x in text])  # ['A', 'B', 'C']

Output:

['A', 'B', 'C']
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.

Cross technology - convert string to character array

Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join