Lines Matching refs:istitle
172 * [string·istitle](#string·istitle)
676 * [`istitle`](#string·istitle)
3948 <a id='string·istitle'></a>
3949 ### string·istitle
3951 `S.istitle()` reports whether the string S contains at least one cased Unicode
3955 "Hello, World!".istitle() # True
3956 "Catch-22".istitle() # True
3957 "HAL-9000".istitle() # False
3958 "Dženan".istitle() # True
3959 "DŽenan".istitle() # False ("DŽ" is a single Unicode letter)
3960 "123".istitle() # False