splitext python code example
Example 1: python get base directory
import os
os.path.dirname(os.path.realpath(__file__))
Example 2: python split
>>> '1,2,3'.split(',')
['1', '2', '3']
>>> '1,2,3'.split(',', maxsplit=1)
['1', '2,3']
>>> '1,2,,3,'.split(',')
['1', '2', '', '3', '']
Example 3: split string python
file='/home/folder/subfolder/my_file.txt'
file_name=file.split('/')[-1].split('.')[0]
Example 4: os path splitext
import os
basename, ext = os.path.splitext('inputfile.txt')