Skip to content

Instantly share code, notes, and snippets.

@hujj0615
Created December 19, 2012 08:05
Show Gist options
  • Save hujj0615/4335186 to your computer and use it in GitHub Desktop.
Save hujj0615/4335186 to your computer and use it in GitHub Desktop.
python calculate time cost
import datetime
start=datetime.datetime.now()
end=datetime.datetime.now()
cost=end-start
print type(cost)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment