📅  最后修改于: 2022-03-11 14:45:41.849000             🧑  作者: Mango
# No !
# A string looks like this:
string = "python"
# While a liste of characters looks like
liste_characters = ['p', 'y', 't', 'h', 'o', 'n']
# But you can switch a string to a list by using
list(string)