我必须编写一个函数,它需要两个变量,即一个句子和一个数字。该函数应返回字符串中等于或大于该数字的唯一词的数量。示例结果应该是:
>>> unique_func("The sky is blue and the ocean is also blue.",3)
6
我能想到的解决方案是
def unique_func(sentence,number):
sentence_split = sentence.lower().split()
for w in sentence_split:
if len(w) >= number:
现在我不知道如何继续我的解决方案。谁能帮我?