From 8ffb24fa822fb8853a7b787fe23ea3cb465dddd0 Mon Sep 17 00:00:00 2001 From: Divan De Bruin Date: Wed, 18 Dec 2024 18:00:13 -0500 Subject: [PATCH] Update 01 - itertools.product().py Removed * on line 19. --- Python/06 - Itertools/01 - itertools.product().py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/06 - Itertools/01 - itertools.product().py b/Python/06 - Itertools/01 - itertools.product().py index e971c1a..a9732dd 100644 --- a/Python/06 - Itertools/01 - itertools.product().py +++ b/Python/06 - Itertools/01 - itertools.product().py @@ -16,4 +16,4 @@ A = list(map(int, input().split())) B = list(map(int, input().split())) -print(*list(product(A, B))) +print(list(product(A, B)))