Python String to Array en utilisant la méthode List ()
# Split the string to array of characters
text1= "ABCDEFGH"
print(list(text1))
text2="A P P L E"
print(list(text2))
Gorgeous Gazelle