Answers for "how to split a string into an array of characters python"

26

how to split a string by character 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
3

python string to char array

>>> s = "foobar"
>>> list(s)
['f', 'o', 'o', 'b', 'a', 'r']
Posted by: Guest on May-14-2020

Code answers related to "how to split a string into an array of characters python"

Python Answers by Framework

Browse Popular Code Answers by Language