started a few days ago with python coding, atm doing some work on my discord bot.
my problem atm is that i cannot join 2 lines out of a .txt file in my print output.
the code itself works exactly as it should.
my output atm:
Spieler Online:
864
expected output:
Spieler Online:864
the method i'm actually using is
with open('test.txt') as fp:
lines=fp.readlines()
print (lines[148] +lines[150])
tried so much things from google/stackoverflow but nothing gets me the expected output.
thanks a bunch for every idea.