read info from a text file into a new variable code example
Example: python read text file into string
with open('data.txt', 'r') as file:
data = file.read().replace('\n', '')
with open('data.txt', 'r') as file:
data = file.read().replace('\n', '')