Advertisement
Felanpro

check if var is empty

Sep 18th, 2016
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.11 KB | None | 0 0
  1. def isEmpty(isEmpty_arg):
  2.     if len(isEmpty_arg) == 0:
  3.         return True
  4.     else:
  5.         return False
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement