Created
October 22, 2018 01:10
-
-
Save kujyp/5eb8fa3bf1b49803ec1f00c59107e8d5 to your computer and use it in GitHub Desktop.
Python Cheat Sheets
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
# Does Python have a string 'contains' substring method? | |
# https://stackoverflow.com/questions/3437059/does-python-have-a-string-contains-substring-method | |
if "blah" not in somestring: | |
continue |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment