Виктор обнови решението на 08.03.2014 17:25 (преди над 10 години)
+def wow_such_much(start, end):
+
+ res = []
+ for i in range(start, end):
+ if i % 15 == 0:
+ res.append('suchmuch')
+ elif i % 3 == 0:
+ res.append('such')
+ elif i % 5 == 0:
+ res.append('much')
+ else:
+ res.append(str(i))
+ return res
+
+def count_doge_words(s):
+
+ doge_words = ['wow', 'lol', 'so', 'such', 'much', 'very']
+ words = s.split()
+ c = 0
+ for w in words:
+ for dw in doge_words:
+ if w.lower() == dw:
+ c += 1
+ return c
Решението ти е хубаво, но ще е добре да измислиш по-описателни имена