+ 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 Odpowiedź
+ 11
Such as files are stored temporary as long as your code works. You can yourself check with python where is it.