Created
April 18, 2017 07:43
-
-
Save Keiku/6b84aeb105531215e622cc32986bd4b6 to your computer and use it in GitHub Desktop.
list operations.
This file contains hidden or 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
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