Answers for "python read file content to string"

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

python get file contents as string

with open('data.txt', 'r') as file:
    data = file.read().replace('\n', '')
Posted by: Guest on August-06-2021

Code answers related to "python read file content to string"

Python Answers by Framework

Browse Popular Code Answers by Language