python file to string

44

python file to string -

with open('data.txt', 'r') as file:
    data = file.read().replace('\n', '')

Comments

Submit
0 Comments