writing in file python code example
Example 1: python write file
with open("file.txt", "w") as file:
for line in ["hello", "world"]:
file.write(line)
Example 2: python write
with open(filename,"w") as f:
f.write('Hello World')
Example 3: read and write to file python
file = open(“testfile.txt”, “r+”)