split string by comma python code example
Example 1: split a string by comma python
# We can use the split() function and put a "," in the parameter
# It'll return a list with the string split up by commas.
txt = "hello, my name is Peter, I am 26 years old"
x = txt.split(",")
print(x)
# You can also do this
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'
#split string by ,
chunks = str.split(',')
print(chunks)