Answers for "textfile to string python"

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

Code answers related to "textfile to string python"

Python Answers by Framework

Browse Popular Code Answers by Language