+ 2
About searching in dataset using python or R
I am trying to create search algorithm for the problem that if user input substring or keyword we will get top 10 searches based on that, for example if someone types "rel" so output will be "reliance", reliance jio. I tried a lot but not getting proper way to create it
1 ответ
0
Python3
Try >> if "keyword" in (user's input):
Print (something)
or what you want the output to be
👍?