Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Received a list of words and used a cycle solution in Clear category for Popular Words by alekseykonotop
def popular_words(text: str, words: list) -> dict:
res_dict = {}
for word in words:
count = 0
for word_in_text in text.split():
if word_in_text.lower() == word:
count += 1
res_dict[word] = count
return res_dict
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!")
Sept. 19, 2018