Created
June 3, 2022 18:15
-
-
Save GitHubEmploy/9222d447ac141ae523af2c1fdbbb619f to your computer and use it in GitHub Desktop.
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 time | |
import numpy as np | |
s = time.time() | |
tsum = np.sum(np.arange(100000000)) | |
print(f'Sum: {tsum}') | |
print(f'Duration: {time.time() - s} seconds') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment