Created
February 2, 2014 20:47
-
-
Save sentenza/8774702 to your computer and use it in GitHub Desktop.
Managing lists as function parameters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def funct(list1, list2): | |
assert isinstance(list1, list) and isinstance(list2, list) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment