Rohit Mapakshi

Results 2 comments of Rohit Mapakshi

``` for (dirpath,dirnames,filenames) in os.walk(path): for dirname in dirnames: print(dirname) for(direcpath,direcnames,files) in os.walk(path+"\\"+dirname): for file in files: actual_path=path+"\\\\"+dirname+"\\\\"+file print(actual_path) des=func2(actual_path) img_descs.append(des) y.append(label) label=label+1 ``` **replace backslash to forward slash**

Thanks for the reply. But I've finished that project a year ago. Your resources have been helpful. Regards Rohit On Thu, Sep 17, 2020, 14:14 PranavBansal04 wrote: > run the...