Metode Python String to Array Menggunakan Daftar ()
# Split the string to array of characters
text1= "ABCDEFGH"
print(list(text1))
text2="A P P L E"
print(list(text2))
Gorgeous Gazelle