From fc5f18fe931eb41f3349404251a1b7deaed619fd Mon Sep 17 00:00:00 2001 From: BryceFury Date: Thu, 14 Mar 2019 11:42:21 +0000 Subject: [PATCH] Update Question 16 answer --- 100+ Python challenging programming exercises.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/100+ Python challenging programming exercises.txt b/100+ Python challenging programming exercises.txt index 97af5aaf..1f6ee066 100644 --- a/100+ Python challenging programming exercises.txt +++ b/100+ Python challenging programming exercises.txt @@ -407,7 +407,7 @@ Use a list comprehension to square each odd number in a list. The list is input Suppose the following input is supplied to the program: 1,2,3,4,5,6,7,8,9 Then, the output should be: -1,3,5,7,9 +1, 9, 25, 49, 81 Hints: In case of input data being supplied to the question, it should be assumed to be a console input.