Answers for "python get file contents as string"

12

python read file to variable

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

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 get file contents as string"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language