Answers for "python read text file as string"

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 file to variable

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

python read entire file as string

# Open a file: file
file = open('my_text_file',mode='r')
 
# read all lines at once
all_of_it = file.read()
 
# close the file
file.close()
Posted by: Guest on May-17-2021

Code answers related to "python read text file as string"

Python Answers by Framework

Browse Popular Code Answers by Language