how to seperate characters of a string into a list python code example
Example: how to split a string into a list of characters in python
list("python")
#output ["p", "y", "t", "h", "o", "n"]
list("python")
#output ["p", "y", "t", "h", "o", "n"]