摘要: def remove_none_values_iterative(data): stack = [data] while stack: current = stack.pop() if isinstance(current, dict): for key, value in list(current 阅读全文
posted @ 2024-01-22 23:40 岁叶年华 阅读(22) 评论(0) 推荐(0)