Last active
February 6, 2019 05:28
-
-
Save Ventsislav-Yordanov/c3cd3bfead49827f7f6b4ba1234df954 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
print(42 in (59, 29, 45, 2, 4, 24, 42, 20, 9)) | |
print(42 in (4, 2, 44, 22, 46, 27, 19, 30, 43)) | |
print() | |
print(42 not in (59, 29, 45, 2, 4, 24, 42, 20, 9)) | |
print(42 not in (4, 2, 44, 22, 46, 27, 19, 30, 43)) | |
print() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment