Антония обнови решението на 06.03.2014 00:28 (преди над 10 години)
+def wow_such_much(start, end):
+ numbers = []
+
+ for i in range(start, end):
+ if i % 3 == 0 and i % 5 == 0:
+ numbers.append('suchmuch')
+ elif i % 3 == 0:
+ numbers.append('such')
+ elif i % 5 == 0:
+ numbers.append('much')
+ else:
+ numbers.append(i)
+
+ return numbers
+
+
+
+def count_doge_words(sentence):
+ count = 0
+ doge_words = ['wow', 'lol', 'so', 'such', 'much', 'very']
+ splitsentence = sentence.split(' ')
+
+ for word in splitsentence:
+ if word in doge_words:
+ count += 1
+
+ return count
Не е особено очевидно, но ако обърнеш внимание на примерите в условието, ще установиш, че и числата трябва да са стрингове.
[1, 2, 'such'] != ['1', '2', 'such']