4 ответов
+ 6
If you want to open a file that is stored on sololearn server, there are some restrictions:
- The file that you want to open, must be created before opening in the same program run
- After the program execution is finished, the file on sololearn server will be deleted automatically
This means you can do:
- create a new file with open(...)
- write some content to the file
- close the file
- open the file again
- read the content of the file and do something with it
- close the file
+ 2
Lothar thank you for explaining
0
You cant, the interpreter is on their servers wich dont have access to your files.