+ 1
How to split an element into symbols? (Python)
Example: a=[âhelloâ] ... #output [âhâ, âeâ, âlâ, âlâ, âoâ]
3 Antworten
+ 3
print(list(a))
+ 2
In this situation:
print(list(a[0]))
+ 1
Thanks everyone;)
Example: a=[âhelloâ] ... #output [âhâ, âeâ, âlâ, âlâ, âoâ]