Python Forum
Problem with List Comprehension in Python
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Problem with List Comprehension in Python
#1
Hi everyone,
I’m working on a Python project where I need to filter and transform a list of numbers. I want to create a new list that contains the squares of all even numbers from the original list. However, my current code is not working as expected.
numbers = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]

# Attempt to use list comprehension to filter and square even numbers
squared_evens = [x**2 for x in numbers if x % 2 != 0]

print(squared_evens)
The output of the code is [1, 9, 25, 49, 81], but I expected it to be [4, 16, 36, 64, 100].
Why is my list comprehension not working correctly?
How can I fix it to get the squares of even numbers?
Thanks in advance for your help!
buran write Oct-08-2024, 08:32 AM:
Spam link removed
Reply
#2
The remainder of even numbers divided by 2 == 0
Reply
#3
You're filtering to keep the _odd_ numbers, not the even ones.
Reply
#4
Having a distracted day?

nums = [x for x in range(11) if x != 0]        
evens = [x for x in nums if x % 2 == 0]
odds = [x for x in nums if x % 2 != 0]
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  List comprehension not working right Cris9855 3 894 Nov-04-2024, 03:46 PM
Last Post: DeaD_EyE
  List Comprehension Issue johnywhy 5 1,803 Jan-14-2024, 07:58 AM
Last Post: Pedroski55
Question mypy unable to analyse types of tuple elements in a list comprehension tomciodev 1 1,538 Oct-17-2023, 09:46 AM
Last Post: tomciodev
  Using list comprehension with 'yield' in function tester_V 5 3,356 Apr-02-2023, 06:31 PM
Last Post: tester_V
  list comprehension 3lnyn0 4 2,328 Jul-12-2022, 09:49 AM
Last Post: DeaD_EyE
  Problem with "Number List" problem on HackerRank Pnerd 5 3,442 Apr-12-2022, 12:25 AM
Last Post: Pnerd
  List comprehension used differently coder_sw99 3 2,647 Oct-03-2021, 04:12 PM
Last Post: coder_sw99
  How to invoke a function with return statement in list comprehension? maiya 4 3,971 Jul-17-2021, 04:30 PM
Last Post: maiya
  List comprehension and Lambda cametan 2 3,050 Jun-08-2021, 08:29 AM
Last Post: cametan
  What is the difference between a generator and a list comprehension? Pedroski55 2 3,107 Jan-02-2021, 04:24 AM
Last Post: Pedroski55

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020