You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Almost all path manipulation operations use string concatenation and / as the directory delimiter.
This is wrong. os.path.join() should be used to build paths and similarly for path splitting.
The text was updated successfully, but these errors were encountered:
Almost all path manipulation operations use string concatenation and
/
as the directory delimiter.This is wrong.
os.path.join()
should be used to build paths and similarly for path splitting.The text was updated successfully, but these errors were encountered: