Skip to content

Instantly share code, notes, and snippets.

@cdeil
Created October 14, 2014 23:15
Show Gist options
  • Save cdeil/bcbe7c565ca407ee6781 to your computer and use it in GitHub Desktop.
Save cdeil/bcbe7c565ca407ee6781 to your computer and use it in GitHub Desktop.
import numpy as np
n = int(1e6)
np.random.seed(0)
data = np.random.random(n)
a = np.sum(data)
print(a)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment