Answers for "python load file text into variable"

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
0

output variable to text file python

file.write("a_dictionary = " + str_dictionary + "\n")
Posted by: Guest on May-19-2021

Code answers related to "python load file text into variable"

Python Answers by Framework

Browse Popular Code Answers by Language