When applying this code: (for example)
x = ["Apple\napple", "Orange\norange", "Banana\nbanana"]
for i in x:
print(i, end = " ")
The result is:
Apple
apple Orange
orange Banana
banana
But I need a way to make it like this:
Apple Orange Banana
apple orange banana