DrSchool Learn coding, fast.
EN AR BN CS DE EL Search

File Write — Example 136

Quick explanation + ready code for: File Write.

Python File Write Back to examples
Back to language
Syntax: File Write in Python. ID: #136

Code

with open("out.txt","w",encoding="utf-8") as f:
  f.write("Hello #15")
print("saved")

Notes

You can copy this snippet and adapt it. For advanced, add real-world inputs, edge cases, and tests.