Skip to content

Instantly share code, notes, and snippets.

@hostmaster
Last active December 21, 2015 19:29
Show Gist options
  • Save hostmaster/6354972 to your computer and use it in GitHub Desktop.
Save hostmaster/6354972 to your computer and use it in GitHub Desktop.
#! /usr/bin/env python
import re
class Bob:
def hey(self, msg):
if msg is None or not msg.strip():
return 'Fine. Be that way!'
elif msg == msg.upper():
return 'Woah, chill out!'
elif re.search(r'\?(?:\s+)?$', msg):
return 'Sure.'
else:
return 'Whatever.'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment