flatten_nested_list# flatten_nested_list(nested)# Recursively flatten a list of arbitrary depth into a flat list. .. rubric:: Example [1, [2, [3, 4], 5], 6] -> [1, 2, 3, 4, 5, 6]