split list where python code example
Example 1: split string python
file='/home/folder/subfolder/my_file.txt'
file_name=file.split('/')[-1].split('.')[0]
Example 2: python split list
string = 'this is a python string'
wordList = string.split(' ')