I am trying to place 2 sentences in continuation.
Output required:
Live simply that others may simply live. => LIVE SIMPLY THAT OTHERS MAY SIMPLY LIVE.
Output getting:
Real sign of intelligence isn't knowledge, it's imagination.
REAL SIGN OF INTELLIGENCE ISN'T KNOWLEDGE, IT'S IMAGINATION.
My code is:
with open("sentences.txt", "r") as readfile:
for row in readfile:
print(row,row.upper(),end='')