Created
February 28, 2018 09:18
-
-
Save mazieres/57f2f7675b4471f55022c39a5c47e725 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
def flatten(li): | |
return [item for sublist in li for item in sublist] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment