diff --git a/README.md b/README.md index a81c642ff..d34a9f7f9 100644 --- a/README.md +++ b/README.md @@ -95,6 +95,7 @@ def spread(arg): result.extend(spread(list(map(lambda x : deep(x) if type(x) == list else x,arr)))) return result +``` ```python deep_flatten([1, [2], [[3], 4], 5]) # [1,2,3,4,5] ```