Python exercise 2 - Odd or Even

Python exercise 2 - Odd or Even

'''
	Exercise 2 - Odd or Even
	Take a list, say for example this one:
	a = [1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89]
	and write a program that prints out all the elements of the list that are less than 5.
	
	Extras:
	Instead of printing the elements one by one, make a new list that has all the elements less than 5 from this list in it and print out this new list.
	Write this in one line of Python.
'''

code:

a = [1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89]
print (i) if i <=5 for i in a

猜你喜欢

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