Answer:
if member_id in current_members:
is_a_member = True
else:
is_a_member = False
Explanation:
Consider a complete program below (This is attached). In the python program we created and initialized a list of current members (Their ids).
Then we prompt user to enter his id.
The program returns "Your Id is found you belong" or "Your id is not found"