Here's an example on what I'm trying to achieve :
print("Hi!")
print("Hello!")
>> Hi! Hello!
Whats really happening :
print("Hi!")
print("Hello!")
>> Hi!
>> Hello!
I've tried stuff like sep=" "
and print("Hi!"),
but those didn't work.
Please don't mark this as duplicate since all the answers for this question don't work for my situation.
https://pastebin.com/57xyqb8C : For my full code.