Python odczytaj plik tekstowy do ciągu

with open('data.txt', 'r') as file:
    data = file.read().replace('\n', '')
Blushing Bat