Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
keiです、ども(`・ω・´) solution in Clear category for Popular Words by s.keigo.11235813
def popular_words(text: str, words: list) -> dict:
# your code here
return {word: text.lower().split().count(word) for word in words}
# another pattern
import re
text=re.split('[, . \n]',text.lower())
result = {}
for word in words:
result[word] = text.count(word)
return result
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', 'near']))
# 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', 'near']) == {
'i': 4,
'was': 3,
'three': 0,
'near': 0
}
print("Coding complete? Click 'Check' to earn cool rewards!")
July 29, 2021
Comments: