If I have two strings, a and b, and they were defined as follows:
a = "Hello\nSome"
b = "World\nText"
How can I concatenate them as follows:
if all the characters on the front line would be in the front line on the resultant string, for example:
def Odd_Concat_Function(i1,i2):
[...]
[...]
c = Odd_Concat_Function(a,b)
print (c)
I wanted the output like this:
Hello World
Some Text