the if "something" in r or "something else" in r seems a bit repetitive, is there a better or more efficient way to do this?
aiBot = Cleverbot()
r = aiBot.send(question).lower()
ff = ""
if "yes" in r or "of course" in r or "absolutely" in r:
ff = "yes"
elif "no" in r or "i don't think so" in r:
ff = "no"