Answers for "how to read and print the contents of a file in python"

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
1

create text file in directory python linux

import os.path
f = open(os.path.expanduser(os.path.join("~/Desktop",boyka + ".txt")), "a")
Posted by: Guest on May-24-2020

Code answers related to "how to read and print the contents of a file in python"

Python Answers by Framework

Browse Popular Code Answers by Language