how to create text 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: how to make a text file in python
f= open("guru99.txt","w+")
with open("file.txt", "w") as file:
for line in ["hello", "world"]:
file.write(line)
f= open("guru99.txt","w+")