I have Dict - test_dict = {'EU6XNAS' : '23TEST1'} print(test_dict.get('EU6XNAS')) is giving me o/p = 23TEST1 which is correct.
I wanted to get same O/P or Value if I search dictionary with first 3 char of String. something like test_dict.get('EU6') --> Currently It will give me None. Any other Method can i use in python?
Basically I wanted to have same o/p as "like" in sql rather than '=' exact match