Skip to content

Instantly share code, notes, and snippets.

@GitHubEmploy
Last active January 9, 2022 20:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save GitHubEmploy/b626b2de4cce4de793c34903a99eb008 to your computer and use it in GitHub Desktop.
Save GitHubEmploy/b626b2de4cce4de793c34903a99eb008 to your computer and use it in GitHub Desktop.
import time
start_time = time.time()
for loop in range(1, 100000000):
pass
print('FINISHED EXECUTION')
print("--- %s seconds ---" % round(time.time() - start_time, 4))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment