Стефани обнови решението на 06.03.2014 15:38 (преди над 10 години)
+def count_doge_words(string):
+ words = string.split()
+ count = 0
+ for word in words:
+ if word in ['wow', 'lol', 'so', 'such', 'much', 'very']:
+ count = count+1
+ return count