作业
en_text = "The first step is one of awareness. It will be hard to make a change to positive thinking without being acutely intimate with the thoughts that run through your mind. Recently, I was amazed to discover deep buried emotions from negative thoughts that I had for fewer than 10 minutes. Without awareness, I would have carried the hurt and anger inside. Awareness helped me to bring them out to the open for me to deal with."
text = en_text.replace(',','').replace('.','')
text = text.split()
setword = set(text)
for i in setword:
count = text.count(i)
print(i,count)