<li><strong>This rule only effects numbers that can be represented exactly by a float (<codeclass="python hljs"><spanclass="hljs-number">.5</span></code>, <codeclass="python hljs"><spanclass="hljs-number">.25</span></code>, …).</strong></li>
</ul>
<div><h3id="ints">Ints</h3><pre><codeclass="python language-python hljs">{<spanclass="hljs-number">90</span>:c} <spanclass="hljs-comment"># 'Z'. Unicode character with value 90.</span>
{<spanclass="hljs-number">90</span>:b} <spanclass="hljs-comment"># '1011010'. Number 90 in binary.</span>
{<spanclass="hljs-number">90</span>:X} <spanclass="hljs-comment"># '5A'. Number 90 in uppercase hexadecimal.</span>
{<spanclass="hljs-number">90</span>:b} <spanclass="hljs-comment"># '1011010'. Binary representation of the int.</span>
{<spanclass="hljs-number">90</span>:X} <spanclass="hljs-comment"># '5A'. Hexadecimal with upper-case letters.</span>