Милен обнови решението на 09.03.2014 23:49 (преди над 10 години)
+def wow_such_much(start, end):
+ my_list = list()
+ for word in range(start, end):
+ if word % 5 == 0 and word % 3 == 0:
+ my_list.append('suchmuch')
+ elif word % 3 == 0:
+ my_list.append('such')
+ elif word % 5 == 0:
+ my_list.append('much')
+ else:
+ my_list.append(str(word))
+ return (my_list)
+
+def count_doge_words(input_string):
+ input_list = input_string.split(' ')
+ parasite_words = ['wow', 'lol', 'so', 'such', 'much', 'very']
+ parasite_count = 0
+ for word in input_list:
+ for parasite in parasite_words:
+ if word == parasite:
+ parasite_count += 1
+ return (parasite_count)
- скобите при
return
са излишни -
some_object in some_collection
проверява дали нещо се намира в дадена колекция. Може да ти спести едно излишно ниво на влагане