Answers for "python string to text file"

13

python read text file into string

with open('data.txt', 'r') as file:
    data = file.read().replace('\n', '')
Posted by: Guest on February-27-2020
1

write string to 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 June-01-2021

Code answers related to "python string to text file"

Python Answers by Framework

Browse Popular Code Answers by Language