Skip to content

Instantly share code, notes, and snippets.

@goog
Created July 11, 2013 09:53
Show Gist options
  • Save goog/5974135 to your computer and use it in GitHub Desktop.
Save goog/5974135 to your computer and use it in GitHub Desktop.
In [328]: timeit.Timer('if done is None:pass','done = 1').timeit()
Out[328]: 0.09523200988769531
In [329]: timeit.Timer('if done!=None:pass','done = 1').timeit()
Out[329]: 0.2190079689025879
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment