import requests
def getText():
url = "https://python123.io/resources/pye/hamlet.txt"
response = requests.get(url)
txt = response.text
txt = txt.lower()
for word in '~!@#$%^&*()_+-={}[],./:";<>?':
txt = txt.replace(word," ")
return txt
hamletTxt = getText()
words = hamletTxt.split()
counts = {}
for word in words:
counts[word] = counts.get(word,0) + 1
items = list(counts.items())
items.sort(key=lambda x:x[1],reverse=True)
for i in range(10):
word,count = items[i]
print("{0:<10}{1:5}".format(word,count))