From 09fafc8ca4bc87f9d7e6093425502816886a1973 Mon Sep 17 00:00:00 2001 From: BhushanDhamale Date: Mon, 1 May 2017 12:23:22 +0530 Subject: [PATCH] Fixed lack of output Fixed at 0x7eff46a77910> output when script is run in Python 2.7.12 --- Print_List_of_Even_Numbers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Print_List_of_Even_Numbers.py b/Print_List_of_Even_Numbers.py index bd9681ca965..fb580c2085c 100644 --- a/Print_List_of_Even_Numbers.py +++ b/Print_List_of_Even_Numbers.py @@ -1 +1 @@ -print(x for x in range(2,100,2)) +print list(x for x in range(2,100,2))