Skip to content

Instantly share code, notes, and snippets.

@AnnikaNoren
Created August 19, 2020 18:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AnnikaNoren/8f2c226d81c79bc8c7ea5aad165ff5d8 to your computer and use it in GitHub Desktop.
Save AnnikaNoren/8f2c226d81c79bc8c7ea5aad165ff5d8 to your computer and use it in GitHub Desktop.
def bracket_matcher(sample):
for char in sample:
if char == ')':
print('True')
else:
print('False')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment