Python save to txt code example

Example 1: python - save file

def save_to_file(content, filename):
    with open(filename, 'w') as file:
        file.write(content)

import file_operations
file_operations.save_to_file('my_content', 'data.txt')

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: python file reading

fin = open("NAME.txt", 'r')
body = fin.read().split("\n")
line = fin.readline().strip()

Example 4: save python output to text file

$ python my_program.py > output.txt

Example 5: how to write something in python

print("This is where you put the message you want to write")