Answers for "is there any split funvtion python"

26

split string in python

def split(word): 
    return [char for char in word]  
      
# Driver code 
word = 'geeks'
print(split(word)) 

#Output ['g', 'e', 'e', 'k', 's']
Posted by: Guest on December-07-2019

Code answers related to "is there any split funvtion python"

Python Answers by Framework

Browse Popular Code Answers by Language