How to fix forward slash issue in path on windows in python?
os.path.join()
will use the right kind of slash on the right platform.
use os.sep
instead of explicitly writing the slashes.
os.path.join()
will use the right kind of slash on the right platform.
use os.sep
instead of explicitly writing the slashes.