def checkio(text, words):
count = 0
text = text.lower()
for word in words:
if word in text:
count += 1
return count
Above is my code and I don't get any feedback to understand where is my mistake. When I click on "Run & Check" the "Check results" panel remains blank...
Created at: 2015/03/22 11:51; Updated at: 2015/03/23 16:19