Skip to content

Instantly share code, notes, and snippets.

@pralabhsaxena05
Created December 10, 2021 07:31
Show Gist options
  • Save pralabhsaxena05/d6444174a5671d4405de5498836dd01f to your computer and use it in GitHub Desktop.
Save pralabhsaxena05/d6444174a5671d4405de5498836dd01f to your computer and use it in GitHub Desktop.
import itertools
mylist = [[-2, -3], [10, 30], ['apple', 'orange']]
print(list(itertools.chain.from_iterable(mylist)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment