How do you tell Python where to save a text file?
For example, my computer is running the Python file off my desktop. I want it to save all the text file in my docum
Another simple way without using import OS is,
outFileName="F:\\folder\\folder\\filename.txt" outFile=open(outFileName, "w") outFile.write("""Hello my name is ABCD""") outFile.close()