Skip to content

Instantly share code, notes, and snippets.

@nebulou5
Last active September 26, 2023 17:41
Show Gist options
  • Save nebulou5/01f0bbe495800eba3d0695a70cb78d4b to your computer and use it in GitHub Desktop.
Save nebulou5/01f0bbe495800eba3d0695a70cb78d4b to your computer and use it in GitHub Desktop.
original_list = [[1, 2, 3], [4, 5], [6, 7, 8, 9]]
flattened_list = [element for sublist in original_list for element in sublist]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment