Created
August 23, 2012 15:10
-
-
Save imsickofmaps/3437580 to your computer and use it in GitHub Desktop.
all in list test
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
allin = True | |
present = ["harry", "bob", "nancy"] | |
required = ["bob","harry","fred"] | |
for x in required: | |
if x not in present: | |
allin = False |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment