I am confused about a simple task
the user will give me a string and my program will check if this string equals the first letters of a list of words ( like this example)
>>> html_attr = ["onerror","onload"] >>> example_task(html_attr,"on") ["onerror","onload"] >>> example_task(html_attr,"one") ["onerror"] should I use fuzzywuzzy here or what ?
thanks