Python搜索函数没有返回任何内容

时间:2017-05-02 07:00:35

标签: python python-3.x

我正在尝试搜索列表中的字符串,以便在用户搜索字符串的任何部分时,不敏感地查找并返回用户输入的搜索案例的结果,并返回其搜索所在的所有项目。但相反,输出是没有的。

def search(movies):
    search_for = str(input("Enter search: "))
    searching = search_for.casefold()
    found = []
    for item in movies:
        if searching in item:
            found.append(item)
    return found

为什么函数不返回任何内容,我将如何解决此问题?

0 个答案:

没有答案