Whenever I run this I get the third option when it should be returning the first, since s = 'yes'. What is going wrong here?
def shut_down(s):
    if s is 'yes':
        return 'Shutting down...'
    elif s is 'no':
        return 'Shutdown aborted!'
    else:
        return "Sorry, I didn't understand you"
ans = 'Yes'
s = ans.lower()
shut_down(s)
 
     
     
    