Add to Chrome
✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
¿Qué imprime el siguiente código?
serie = [x**2 for x in range(1, 6) if x % 2 == 0]print(serie)
serie = [x**2 for x in range(1, 6) if x % 2 == 0]
print(serie)
[2, 4]
[1, 9, 25]
[4, 16]
[1, 4, 9, 16, 25]
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!