I want to print some text beside another text that has been printed before in python for example
print("Hello")
a="This is a test"
print(a)
What I mean is to print like this "HelloThis is a test" not in next line I know I shoud use print("Hello",a) but I wanted to use seprated print commands!!!!