Last active
September 26, 2023 17:41
-
-
Save nebulou5/01f0bbe495800eba3d0695a70cb78d4b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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