If you use macOS then you would know how you can type cd ~/Documents
in the terminal and regardless of the user of the computer, the CWD would change to Documents.
In python, I'm trying to do the same thing using os.chdir("~/Documents")
using the os module but it doesn't work!
Does anyone know another way to do this?