create and open a file 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: python create file
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+")