Python split text code example

Example 1: separate a string in python

string = "A B C D"
string2 = "E-F-G-H"

# the split() function will return a list
stringlist = string.split()
# if you give no arguments, it will separate by whitespaces by default
# ["A", "B", "C", "D"]

stringlist2 = string2.split("-", 3)
# you can specify the maximum amount of elements the split() function will output
# ["E", "F", "G"]

Example 2: split word python

# How to spit a word :

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

# Output :
# ["W", "o", "r", "d"]

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(' ')