split word in python code example
Example 1: how to split a string by character in python
def split(word):
return [char for char in word]
word = 'geeks'
print(split(word))
Example 2: python string to list of chars
l = list('abcd')
l = map(None, 'abcd')
l = [i for i in 'abcd']
import re
l = re.findall('.', 'abcd')
print(l)
Example 3: split word python
text = "Word"
text_list = list(text)
print(text_list)
Example 4: split string python
file='/home/folder/subfolder/my_file.txt'
file_name=file.split('/')[-1].split('.')[0]
Example 5: how to split word in python
text= "I am Batman"
splitted_text= text.split()
Print(splitted_text)