🌈 搜索
📅  最后修改于: 2022-03-11 15:02:07.335000             🧑  作者: Mango
def item_in_list(to_check, the_list): for item in the_list: if to_check == item: return True return False