Last active
December 6, 2015 00:21
-
-
Save MasazI/f559d262af3034d3c394 to your computer and use it in GitHub Desktop.
時間計測1 print
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
start_time = time.time() | |
~何か処理~ | |
end_time = time.time() | |
duration = end_time - start_time | |
print duration | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment