Created
January 18, 2020 00:26
-
-
Save markusrenepae/387ea7aa46de63b95dde2e31f461481d to your computer and use it in GitHub Desktop.
First code snippet for Medium article about Numpy
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
import numpy as np | |
import time | |
length = 10 | |
native_lst = [i for i in range(length)] | |
numpy_lst = np.array(native_lst) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment