+ 1
When you use python to create a file in sololearn, where is the file stored?
i was wondering where created files go in sololearn when you use something like this: ââ- file_path = 'myfile.txt' with open(file_path, 'w') as file: file.write("this is the content of my file!") ââ- or does the file even get created?âŠ
1 Answer
+ 11
Such as files are stored temporary as long as your code works. You can yourself check with python where is it.