Skip to content

Instantly share code, notes, and snippets.

@markusrenepae
Created January 18, 2020 00:26
Show Gist options
  • Save markusrenepae/387ea7aa46de63b95dde2e31f461481d to your computer and use it in GitHub Desktop.
Save markusrenepae/387ea7aa46de63b95dde2e31f461481d to your computer and use it in GitHub Desktop.
First code snippet for Medium article about Numpy
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