I can\'t change my directory in Google colab. when I type cd it gives output like this \'/content\' I tried to change the directory using import os os.chdir(\"drive\")
/content/ is the default directory in which all of your files and data are saved.
To change the directory you can do something like this:
Create a folder inside the /content/ which is recommended. Then run this:
import os
os.chdir('/content/folder_name')
If you run !pwd you could see the path changed to /content/folder_name