Skip to content

Instantly share code, notes, and snippets.

@emoss08
Created October 19, 2022 18:46
Show Gist options
  • Save emoss08/1110e007185a511f9eee3a6fc94395f1 to your computer and use it in GitHub Desktop.
Save emoss08/1110e007185a511f9eee3a6fc94395f1 to your computer and use it in GitHub Desktop.
import time
def main():
"""Print the latest tutorial from Real Python"""
tic = time.perf_counter()
# code here
toc = time.perf_counter()
print(f"RAN IN {toc - tic:0.4f} seconds")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment