Атанас обнови решението на 09.03.2014 08:30 (преди над 10 години)
+def wow_such_much(start, end):
+ result = []
+ for i in range (start, end):
+ if i % 15 == 0:
+ result.append('suchmuch')
+ else:
+ if i % 3 == 0:
+ result.append('such')
+ elif i % 5 == 0:
+ result.append('much')
+ else:
+ result.append(str(i))
+ return result
+
+
+
+def count_doge_words(sentence):
+ count = 0
+ if len(sentence) == 0:
+ return count
+ else:
+ for i in range (0, len(sentence.split())):
+ if sentence.split()[i] == 'wow' or \
+ sentence.split()[i] == 'lol' or \
+ sentence.split()[i] == 'so' or \
+ sentence.split()[i] == 'such' or \
+ sentence.split()[i] == 'much' or \
+ sentence.split()[i] == 'very':
+ count = count + 1
+ return count
- Не е нужно да нестваш
if
-ове - Опитай се да опростиш условието на
if
-а вcount_doge_words