Answers for "how to import text file in python and print"

2

python import text file

f = open('words.txt', 'r')
#then to store
content = f.read()
Posted by: Guest on March-31-2021
1

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))
Posted by: Guest on May-15-2020

Code answers related to "how to import text file in python and print"

Python Answers by Framework

Browse Popular Code Answers by Language