Guest User

Untitled

a guest
Nov 23rd, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. def less_than(numList):
  2. newList = []
  3. for i in numList:
  4. if (i < 5):
  5. newList.append(i)
  6. print(newList)
  7. newList = []
  8. user_input = int(input("Enter a number "))
  9. for i in numList:
  10. if (i < user_input):
  11. newList.append(i)
  12. print(newList)
  13. less_than ([])
Add Comment
Please, Sign In to add comment