Skip to content

Instantly share code, notes, and snippets.

@Keiku
Created April 18, 2017 07:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Keiku/6b84aeb105531215e622cc32986bd4b6 to your computer and use it in GitHub Desktop.
Save Keiku/6b84aeb105531215e622cc32986bd4b6 to your computer and use it in GitHub Desktop.
list operations.
import numpy as pd
# Python
list(map(lambda x: x + 1, range(1, 6, 1)))
# Out[1]: [2, 3, 4, 5, 6]
# Numpy
list(np.array(range(1, 6, 1)) + 1)
# Out[2]: [2, 3, 4, 5, 6]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment