如何在python中对用户输入使用casefold方法?

bq3bfh9z  于 2021-06-13  发布在  Cassandra
关注(0)|答案(0)|浏览(170)

我有一个flask应用程序和一个cassandra数据库,其中存储了活动。在应用程序上有一个部分,可以看到所有的活动,并有一个搜索栏以及。我试图从这个搜索栏中搜索活动…假设数据库和应用程序中存在一个名为australia的活动,如果我键入australia进行搜索,它将显示活动..但是当我键入australia或australia时,它不会显示活动。在我的flask文件中,我对用户输入应用了casefold函数,但是它不起作用。以下是code:-

if request.method == 'POST':
        search = request.form['search'].casefold()
        print('---------',search.casefold())
        elements = [s for s in Campaigns.all() if search in s.html_content]
        #rest of the code.

我该怎么做?请帮忙

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题