Python odczyt plik bez nowej linii

# converts read file into a list without newlines
temp = file.read().splitlines()
Evang