Skip to content

Instantly share code, notes, and snippets.

@Ventsislav-Yordanov
Last active February 6, 2019 05:28
Show Gist options
  • Save Ventsislav-Yordanov/c3cd3bfead49827f7f6b4ba1234df954 to your computer and use it in GitHub Desktop.
Save Ventsislav-Yordanov/c3cd3bfead49827f7f6b4ba1234df954 to your computer and use it in GitHub Desktop.
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