Python exercise 7 - List comprehension

Python exercise 7 - List comprehension

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.

Code:

a = [1, 4, 9, 16, 25, 36, 49, 64, 81, 100]
b=[i for i in a if i%2==0]
print (b)

猜你喜欢

转载自blog.csdn.net/Schatzke/article/details/89246357