We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
a bit readable
from itertools import product
l1 = list(map(int,input().split()))
l2 = list(map(int,input().split()))
result = [(a,b) for a,b in product(l1,l2)]
print(*result)
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
itertools.product()
You are viewing a single comment's thread. Return to all comments →
a bit readable from itertools import product l1 = list(map(int,input().split())) l2 = list(map(int,input().split())) result = [(a,b) for a,b in product(l1,l2)] print(*result)