Why does it add 2 '\' instead of 1 '/'? I am trying to create a cats folder(using Jupyter Notebook) inside the train directory for my model where I will place the cat's images. As it os.path.join returns 2 '\' that is why I am unable to copy/place images there through code. Can anybody help me better understand os.path.join as I have gone through several articles but those were of no help
base_dir = "CNN_Working/cats_and_dogs_small"
train_dir = os.path.join(base_dir, 'train')
os.mkdir(train_dir)
train_cats_dir = os.path.join(train_dir, 'cats')
os.mkdir(train_cats_dir)
train_cats_dir
This is what it returns
'CNN_Working\\cats_and_dogs_small\\train\\cats'
instead of one '/' it returns 2 '\'?
Probably you're using Windows and while using Python on It you commonly use double backslashes '\'. On unix systems you'll got the '/'.