📜  使用 list() 方法将 Python 字符串转换为数组 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:41.379000             🧑  作者: Mango

代码示例1
# Split the string to array of characters

text1= "ABCDEFGH"
print(list(text1))

text2="A P P L E"
print(list(text2))