def send2jarvis(request): if request.lower().find("jarvis") != -1: match.search(request)
#!/usr/bin/python2 # -*- coding: utf-8 -*- import match while True: try: request = raw_input(" > ") except KeyboardInterrupt: break match.search(request) print("\nBye !")