Skip to content

Instantly share code, notes, and snippets.

@yipo
yipo / .gitignore
Last active November 22, 2022 03:02
Python look-up speed test
*.pyc
@yipo
yipo / time_cost.py
Last active November 22, 2022 03:09
Calculate the time cost
#!/usr/bin/env python
import time
from contextlib import contextmanager
from datetime import timedelta
@contextmanager
def time_cost():
begin = time.time()