Mot le plus fréquent dans un tableau de chaînes Python

words=['one','two','one','three','one']
word_counts=dict()
#after the loop the dictionary will have each word frequency
for word in words:
	try:
		word_counts[word]+=1
	except:
		word_counts[word]=1
Fierce Finch