I am having this problem when sharing files with my friends...
I have windows, some use mac and others Linux. When I share python files that contain commands of creating directories, like for instance:
Path_Results = os.path.dirname(Path_Definition)+'\Results'
the directory is not created because in Windows \ is used, whereas in mac and linux / are used. Any ideas how can I create a more general script ?
Thanks in advance