Guest User

Untitled

a guest
Jun 19th, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. """
  2. Take a list, say for example this one: a = [1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89]
  3. Write a program that prints out all the elements of the list that are less than 5.
  4. 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
  5. print out this new list.Write this in one line of Python.
  6. Ask the user for a number and return a list that contains only elements from the original list a that are smaller than that number given by the user.
  7. """
  8. a = [1,1,2,3,5,8,13,21,34,55,89]
  9. b = []
  10. b.append([x for x in a if x <= 5])
  11. print(b)
  12.  
  13. choice = int(input("Now enter a number you want to search in array:"))
  14.  
  15. print(f"Numbers less than {choice} in the lists are ")
  16. print([y for y in a if y < choice])
Add Comment
Please, Sign In to add comment