Answers for "how to return a string from a txt file python"

29

get text from txt file python

with open ("data.txt", "r") as myfile:
    data = myfile.read().splitlines()
Posted by: Guest on December-10-2020
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 "how to return a string from a txt file python"

Python Answers by Framework

Browse Popular Code Answers by Language