write text 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 to file
with open(filename,"w") as f:
f.write('Hello World')