python save text to file code example
Example 1: python write to file
file = open(“testfile.txt”,”w”)
file.write(“Hello World”)
file.write(“This is our new text file”)
file.write(“and this is another line.”)
file.write(“Why? Because we can.”)
file.close()
Example 2: print in text file python
price = 33.3
with open("Output.txt", "w") as text_file:
text_file.write("Purchase Amount: %s price %f" % (TotalAmount, price))
Example 3: how to write to a text file in python
from sys import *
f = open("haha.txt", "w")
f.write(str(argv[1]))
f.close()
f = open("haha.txt", "r")
print(f.read())
Example 4: save python output to text file
$ python my_program.py > output.txt
Example 5: how to make a text file in python
f= open("guru99.txt","w+")