|
@ -809,8 +809,8 @@ Profile |
|
|
```python |
|
|
```python |
|
|
from time import time |
|
|
from time import time |
|
|
start_time = time() |
|
|
start_time = time() |
|
|
... |
|
|
|
|
|
duration = (time() - start_time) |
|
|
|
|
|
|
|
|
<code> |
|
|
|
|
|
duration = time() - start_time |
|
|
``` |
|
|
``` |
|
|
|
|
|
|
|
|
#### Times execution of the passed code: |
|
|
#### Times execution of the passed code: |
|
|