In the program I'm working on I need to have 3 multiline strings print out next to each other, so the first line of each string is on the same line, the second line of each string is on the same line, etc.
Input:
'''string
one''',
'''string
two''',
'''string
three'''
Output:
string
one
string
two
string
three
Desired result:
stringstringstring
one two three