Skip to content

Instantly share code, notes, and snippets.

@juanpabloaj
Created September 11, 2016 02:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save juanpabloaj/dff0e43080b3f6d9c7cac7671613cdc3 to your computer and use it in GitHub Desktop.
Save juanpabloaj/dff0e43080b3f6d9c7cac7671613cdc3 to your computer and use it in GitHub Desktop.
A example for the runmultithread program
import time
t0 = time.time()
for i in range(10000):
for j in range(5000):
i * j
print time.time() - t0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment