<div><h3id="propertymethods">Property Methods</h3><pre><codeclass="python language-python hljs"><bool> = <str>.isdecimal() <spanclass="hljs-comment"># Checks for [0-9]. Also [०-९] and [٠-٩].</span>
<bool> = <str>.isdigit() <spanclass="hljs-comment"># Checks for [²³¹…] and isdecimal().</span>
<bool> = <str>.isnumeric() <spanclass="hljs-comment"># Checks for [¼½¾], [零〇一…] and isdigit().</span>
<bool> = <str>.isnumeric() <spanclass="hljs-comment"># Checks for [¼½¾…], [零〇一…] and isdigit().</span>
<bool> = <str>.isalnum() <spanclass="hljs-comment"># Checks for [a-zA-Z…] and isnumeric().</span>
<bool> = <str>.isprintable() <spanclass="hljs-comment"># Checks for [ !#$%…] and isalnum().</span>
<bool> = <str>.isspace() <spanclass="hljs-comment"># Checks for [ \t\n\r\f\v\x1c-\x1f\x85\xa0…].</span>