Can anyone tell how to skip forward slash char in python?
I want to create a directory abc(17/12/18) so I tried
import os
os.makedirs('abc(17\/12\/18)')
but the folder created was abc(17\)
Can anyone tell what am I missing? I searched on Internet but was unsuccessful.