Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. while len(lisps) > 5:
  2. if rand > 10:
  3. lisps = lisps.append(rand)
  4. print(f'{rand} Greater than 10')
  5. elif rand < 10:
  6. print(rand)
  7. print(f'{rand} less than 10')
  8.  
  9.  
  10. #It doesn't print anything.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement