Answers for "how can we take a string from file to variable"

13

python read file to variable

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

Code answers related to "how can we take a string from file to variable"

Python Answers by Framework

Browse Popular Code Answers by Language