Skip to content

Instantly share code, notes, and snippets.

@yassu
Created June 5, 2014 14:50
Show Gist options
  • Save yassu/c496766b26ee39a705dc to your computer and use it in GitHub Desktop.
Save yassu/c496766b26ee39a705dc to your computer and use it in GitHub Desktop.
import timeit
def get_average(array):
return sum(array) / len(array)
t = timeit.Timer('cond=True; cond == True')
print(get_average(t.repeat(100)))
# -> 0.04552456719000474
t = timeit.Timer('cond=True; cond is True')
print(get_average(t.repeat(100)))
# -> 0.03570362770999054
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment