Is it possible to check if something is in a list of lists at a specific index? Example:
l_list = [['a', 2, True], ['b', 1, False], ['c', 5, True], ...]
if 'a' in l_list:
print('Yes')
I want to check if 'a' exists inside of l_list
(and just ignore other values) as any of the sub-lists first value without iterating over the whole list.