From 9a1000034291c7ed638f0e930576c51ee2fda1b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Fri, 28 Dec 2018 14:53:26 +0100 Subject: [PATCH] Profile --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index bc7fdec..7532b38 100644 --- a/README.md +++ b/README.md @@ -1338,7 +1338,7 @@ duration = time() - start_time #### Times execution of the passed code: ```python from timeit import timeit -timeit('"-".join(str(n) for n in range(100))', +timeit('"-".join(str(a) for a in range(100))', number=10000, globals=globals()) ```