Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Uncategorized category for Popular Words by MKaa01
def popular_words(text, words):
text=text.replace('.',' ').replace(',',' ')
text=text.lower().split()
counter={}
for i in words:
counter.setdefault(i,0)
for word in text:
if word in words:
counter[word] += 1
print(counter)
return counter
if __name__ == '__main__':
print("Example:")
print(popular_words('''
When I was One,
I had just begun.
When I was Two,
I was nearly new.
''', ['i', 'was', 'three']))
# These "asserts" are used for self-checking and not for an auto-testing
assert popular_words('''
When I was One,
I had just begun.
When I was Two,
I was nearly new.
''', ['i', 'was', 'three']) == {
'i': 4,
'was': 3,
'three': 0
}
print("Coding complete? Click 'Check' to earn cool rewards!")
Jan. 18, 2018