xxxxxxxxxx
>>> s = "foobar"
>>> list(s)
['f', 'o', 'o', 'b', 'a', 'r']
xxxxxxxxxx
str = 'Python,Examples,Programs,Code,Programming'
chunks = str.split(',')
print(chunks)
xxxxxxxxxx
var = "Hello World!" #create a string
lenght = len(var) # Get it's lenght as an int
list = [] # Make a new list to store each letter
for i in range(lenght): # Add each letter to the list
list.append(var[i])
#list.remove(" ") # Remove spaces (Optional)
print(list) # Show yor list!