xxxxxxxxxx
word = "word"
print([*word]) # ['w', 'o', 'r', 'd']
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!