Python-based File Write Operation: Difference between revisions

From GM-RKB
Jump to navigation Jump to search
No edit summary
m (Text replacement - "==References " to "== References ")
Line 11: Line 11:
----
----
----
----
==References ==
== References ==
* https://docs.python.org/2/tutorial/inputoutput.html
* https://docs.python.org/2/tutorial/inputoutput.html



Revision as of 17:31, 2 August 2018

A Python-based File Write Operation is a file write operation that is a Python file operation.



References

2018

outputFileText = "Here's some text to save in a file"
open("testit.txt", "w").write(outputFileText)

Append to a file requires the second parameter of open() to be "a" (from append):

outputFileText = "Here's some text to add to the existing file."
open("testit.txt", "a").write(outputFileText)