Answers for "split sentence in python"

7

python split sentence into words

sentence = 'Hello world a b c'
split_sentence = sentence.split(' ')
print(split_sentence)
Posted by: Guest on October-12-2020
24

split string python

file='/home/folder/subfolder/my_file.txt'
file_name=file.split('/')[-1].split('.')[0]
Posted by: Guest on April-01-2020
1

split word python

# How to spit a word :

text = "Word"
text_list = list(text)
print(text_list)

# Output :
# ["W", "o", "r", "d"]
Posted by: Guest on January-30-2021

Code answers related to "split sentence in python"

Python Answers by Framework

Browse Popular Code Answers by Language