python open entire file for reading into string code example
Example 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()
Example 2: python read text file into string
with open('data.txt', 'r') as file:
data = file.read().replace('\n', '')