Get your own Python server Result Size: 625 x 565
x
 
def myfunc(a, b):
  return a + b
x = map(myfunc, ('apple', 'banana', 'cherry'), ('orange', 'lemon', 'pineapple'))
print(x)
#convert the map into a list, for readability:
print(list(x))
<map object at 0x034244F0>
['appleorange', 'bananalemon', 'cherrypineapple']