• I do not know how to proceed.

Question related to mission Stressful Subject

 

Hi, my code looks like this and I do not know what should I do next as there are no hints. Can someone help me?

def is_stressful(subj):

if subj.endswith('!!!'):
    return True  
else:
    for x in subj:
        uppercase = 0
        if x.isupper():
            uppercase += 1
    if uppercase == len(subj):
        return True
    else:        
        for i in subj:
             if subj[i] = subj[i+1]:
                subj = subj.replace(subj[i],"")
        if subj.find('help'):
            return True
        else:
            return False