I have a list of dicts like this:
l = [{"1": "one", "2":"two"}, {"3": "three", "4":"four"}, {"5": "five", "6":"six"}] I want to check the below value is exist in that list of dicts or not:
a = "two" I know we can do this by loop and get() method, I am expecting any alternate method.