1
2# Python3 program to Split string into characters 
3def split(word): 
4    return [char for char in word]  
5      
6# Driver code 
7word = 'geeks'
8print(split(word)) 
91str = 'Python,Examples,Programs,Code,Programming'
2
3chunks = str.split(',')
4print(chunks)