EN
Python - convert string to character array
0 points
In this article, we would like to show you how to convert string to character array in Python.
Quick solution:
xxxxxxxxxx
1
text = 'ABC'
2
3
result = list(text)
4
5
print(result) # ['A', 'B', 'C']
In this example, we simply use list()
to convert text
string to the character array.
xxxxxxxxxx
1
text = 'ABC'
2
3
result = list(text)
4
5
print(result) # ['A', 'B', 'C']
Output:
xxxxxxxxxx
1
['A', 'B', 'C']
In this example, we present how to convert text
string to the character array without using list()
.
xxxxxxxxxx
1
text = 'ABC'
2
3
print([x for x in text]) # ['A', 'B', 'C']
Output:
xxxxxxxxxx
1
['A', 'B', 'C']