Answers for "how to convert text document to string in python"

13

python file to string

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

python save string to text

with open("Output.txt", "w") as text_file:
    text_file.write("Purchase Amount: %s" % TotalAmount)
Posted by: Guest on October-22-2021

Code answers related to "how to convert text document to string in python"

Python Answers by Framework

Browse Popular Code Answers by Language