Aug-18-2019, 02:16 PM
Hey guys
I have been trying to find a solution or this exercise and I actually did . But the problem is that I can not actually write this program in one line of Python !
I don't know how to do it
I have been trying to find a solution or this exercise and I actually did . But the problem is that I can not actually write this program in one line of Python !
I don't know how to do it

''' Let’s say I give you a list saved in a variable: a = [1, 4, 9, 16, 25, 36, 49, 64, 81, 100]. Write one line of Python that takes this list a and makes a new list that has only the even elements of this list in it. '''And this is my code :
a = [1, 4, 9, 16, 25, 36, 49, 64, 81, 100] new_list = [] for i in a: if i % 2 == 0: new_list.append(i) print(new_list)