@applepython, just the file name (”myfile.csv”) will create the file in the directory where your script is.

Or a relative path like ”../../some/other/dir/myfile.csv” works.

Or, if you have to be absolute, a path starting with os.path.expanduser('~') will let you start from your Pythonista root dir.