摘要: from functools import reducedef list_dict_removal(data_list): run_function = lambda x, y: x if y in x else x + [y] return reduce(run_function, [[], ] 阅读全文
posted @ 2019-11-30 17:07 暗渺 阅读(261) 评论(0) 推荐(0)