Hi I'm new on learning python and I'm learning python files handling. the following code works fine. But I can't find the folder where python creates this file. (I'm using Visual studio code )
f = open("demofile2.txt", "a")
f.write("Now the file has new content ")
f.close()
f = open("demofile2.txt", "r")
print(f.read())