Created
January 22, 2018 01:25
-
-
Save okdolly-001/3418a81c7bcea9eb2df219db5f9d52b2 to your computer and use it in GitHub Desktop.
print the running time
This file contains hidden or 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
| from datetime import datetime | |
| startTime = datetime.now() | |
| #do something | |
| print datetime.now() - startTime |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment