Chalarangelo / 30-seconds-of-python

Short Python code snippets for all your development needs
https://www.30secondsofcode.org/python/p/1
Creative Commons Attribution 4.0 International
8.83k stars 1.26k forks source link

ravel snippet: flatten list with multi nesting levels #477

Closed ernestoarbitrio closed 2 years ago

ernestoarbitrio commented 2 years ago

Ravel snippet: Flatten arbitrarily nested lists. For example [1, 2, [3, 4, [5, 6],[]], [7], 8] becomes [1, 2, 3, 4, 5, 6, 7, 8]