Created
June 1, 2017 09:42
-
-
Save pgiraud/7d1dd4f1cbac9f28037c3d9d8a3a5f1d to your computer and use it in GitHub Desktop.
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
#! /usr/bin/python | |
import time | |
start = time.time() | |
for i in range(100000000): | |
if False and 'blue' in 'sky is blue': | |
pass | |
end = time.time() | |
print(end - start) | |
start = time.time() | |
for i in range(100000000): | |
if False and ('blue' in 'sky is blue'): | |
pass | |
end = time.time() | |
print(end - start) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment