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.