Created
October 19, 2022 18:46
-
-
Save emoss08/1110e007185a511f9eee3a6fc94395f1 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
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