Copyright (c) Hyperion Entertainment and contributors.
AmigaOS Manual: Python Methods: Difference between revisions
Jump to navigation
Jump to search
Content deleted Content added
| Line 17: | Line 17: | ||
== .isdecimal() == |
== .isdecimal() == |
||
== .isdigit() == |
== .isdigit() == |
||
Returns true if string contains only digits. |
|||
== .islower() == |
== .islower() == |
||
== .isnumeric() == |
== .isnumeric() == |
||
Revision as of 17:43, 11 February 2021
Built-in Methods for Strings
.capitalize()
Capitalizes the first letter of a string.
.center()
.count()
.decode()
.encode()
.endswith()
.expandtabs()
.find()
.index()
.isalnum()
.isalpha()
.isdecimal()
.isdigit()
Returns true if string contains only digits.