<div><h2id="profile"><ahref="#profile"name="profile">#</a>Profile</h2><div><h3id="basic">Basic</h3><pre><codeclass="python language-python hljs"><spanclass="hljs-keyword">from</span> time <spanclass="hljs-keyword">import</span> time
start_time = time() <spanclass="hljs-comment"># Seconds since the Epoch.</span>
start_time = time() <spanclass="hljs-comment"># Seconds since the Epoch.</span>
...
duration = time() - start_time
</code></pre></div></div>
<div><h3id="highperformance">High Performance</h3><pre><codeclass="python language-python hljs"><spanclass="hljs-keyword">from</span> time <spanclass="hljs-keyword">import</span> perf_counter<spanclass="hljs-keyword">as</span> pc
start_time = pc()<spanclass="hljs-comment"># Seconds since restart.</span>
<div><h3id="highperformance">High Performance</h3><pre><codeclass="python language-python hljs"><spanclass="hljs-keyword">from</span> time <spanclass="hljs-keyword">import</span> perf_counter
start_time = perf_counter() <spanclass="hljs-comment"># Seconds since restart.</span>
...
duration = pc() - start_time
duration = perf_counter() - start_time
</code></pre></div>
<div><h3id="timingasnippet">Timing a Snippet</h3><pre><codeclass="python language-python hljs"><spanclass="hljs-meta">>>></span><spanclass="hljs-keyword">from</span> timeit <spanclass="hljs-keyword">import</span> timeit