Jamesbusayo

Untitled

Feb 22nd, 2020
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.21 KB | None | 0 0
  1. empty = []
  2.  
  3.  
  4. active = [True]
  5.  
  6.  
  7. favorite_numbers = [1, 3, 4, 8, 2]
  8.  
  9.  
  10. colors = ["red", "green", "blue"]
  11.  
  12.  
  13. def is_long(number):
  14.     if len(number) > 5:
  15.         return True
  16.     else:
  17.         return False
Add Comment
Please, Sign In to add comment