From 2e00229fe2eaa2f16e42b8750db40720f565e915 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Wed, 26 Dec 2018 14:30:15 +0100 Subject: [PATCH] Timeit --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 64b37df..d6e4a4b 100644 --- a/README.md +++ b/README.md @@ -1271,7 +1271,8 @@ duration = time() - start_time #### Times execution of the passed code: ```python from timeit import timeit -timeit('"-".join(str(n) for n in range(100))', number=10000, globals=globals()) +timeit('"-".join(str(n) for n in range(100))', + number=10000, globals=globals()) ``` #### Generates a PNG image of call graph and highlights the bottlenecks: