file_name = file_path.split('\')
Gives me an error because \'
is to represent a single quote in python.
I want to split a file name using single backslash.
file_name = file_path.split('\')
Gives me an error because \'
is to represent a single quote in python.
I want to split a file name using single backslash.