Python split text code example
Example 1: separate a string in python
string = "A B C D"
string2 = "E-F-G-H"
stringlist = string.split()
stringlist2 = string2.split("-", 3)
Example 2: split word python
text = "Word"
text_list = list(text)
print(text_list)
Example 3: split string python
file='/home/folder/subfolder/my_file.txt'
file_name=file.split('/')[-1].split('.')[0]
Example 4: python split paragraph
text.split('\n\n')
Example 5: python split string
UserInputs = []
UserInputs = input().split()
Example 6: how to split a string in python
sample_str = "Help developers by donating!"
txt.split(' ')