python split string by comma code example
Example 1: split a string by comma python
txt = "hello, my name is Peter, I am 26 years old"
x = txt.split(",")
print(x)
for thing in x:
print(thing)
Example 2: split string python
file='/home/folder/subfolder/my_file.txt'
file_name=file.split('/')[-1].split('.')[0]
Example 3: split a string by comma in python
str = 'apple,orange,grape'
chunks = str.split(',')
print(chunks)
Example 4: how to split a string in python
sample_str = "Help developers by donating!"
txt.split(' ')