Q. How do you check if 'a' is present in a list `lst`?
β
Correct Answer: (B)
'a' in lst
Explanation: The `in` keyword checks for membership.