python splitext code example
Example 1: split string python
string = 'James Smith Bond'
x = string.split(' ')
print('The name is',x[-1],',',x[0],x[-1])
Example 2: python get base directory
import os
os.path.dirname(os.path.realpath(__file__))
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')
Example 5: python split string
UserInputs = []
UserInputs = input().split()