Last active
July 30, 2019 05:03
-
-
Save ChaitanyaBaweja/2e1ef221567761acc65c5542adfab8ee to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
a = [1,2,3,4] | |
b = [10, 11] | |
cart_prod = [(i,j) for i in a for j in b] | |
print cart_prod | |
# Output: | |
# [(1, 10), (1, 11), (2, 10), (2, 11), (3, 10), (3, 11), (4, 10), (4, 11)] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment