reading writing files in 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: read and write to file python
file = open(“testfile.txt”, “r+”)
with open("file.txt", "w") as file:
for line in ["hello", "world"]:
file.write(line)
file = open(“testfile.txt”, “r+”)