In Python, a list of characters is the same as a string. QUIZ code example
Example: in python, a list of characters is the same as a string.
# 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)