I have a problem with python. Looks like python has as default folder my Dropbox folder. Each time that I want to save some file without specifies the path, pythons save it automatically in the Dropbox folder.
>>> saveFile = save('Im a file', 'w')
>>> saveFile.write('Hello World')
>>> saveFile.close()
The file Im a file
is saved in the Dropbox folder instead the Home folder. How can I change this? This also occurs when I want to load some file stored in Home folder to python, I must specify the path to Home, but not when the file is stored in the Dropbox folder.
My OS is Deepin (a distro based on Ubuntu)
Thanks to all.