Copyright (c) Hyperion Entertainment and contributors.
AmigaOS Manual: Python Methods: Difference between revisions
Jump to navigation
Jump to search
Content deleted Content added
| Line 150: | Line 150: | ||
== .swapcase() == |
== .swapcase() == |
||
<nowiki>object.swapcase()</nowiki> |
|||
== .title() == |
== .title() == |
||
== .translate() == |
== .translate() == |
||
Revision as of 18:19, 11 February 2021
Built-in Methods for Strings
.capitalize()
object.capitalize()
Capitalizes the first letter of the string object.
.center()
object.center(width, fillchar)
.count()
object.count(substring, start, end)
.decode()
object.decode(encoding, errors)
.encode()
object.encode(encoding, errors)
.endswith()
object.endswith(suffix, start, end)
.expandtabs()
object.expandtabs(tabsize)
.find()
object.find(string, start, end)
.index()
object.index(string, start, end)
.isalnum()
object.isalnum()
.isalpha()
object.isalpha()
.isdecimal()
object.isdecimal()
.isdigit()
object.isdigit()
Returns true if the string object contains only digits.
.islower()
object.islower()
.isnumeric()
object.isnumeric()
.isspace()
object.isspace()
.istitle()
object.istitle()
.isupper()
object.isupper()
.join()
object.join(sequence)
.len()
object.len()
Returns the length of the string object.
.ljust()
object.ljust(width[, fillchar])
.lower()
object.lower()
.lstrip()
object.lstrip()
.maketrans()
object.maketrans()
.max()
object.max(string)
.min()
object.min(string)
.replace()
object.replace(old, new[, max])
.rfind()
object.rfind(string, start, end)
.rindex()
object.rindex(string, start, end)
.rjust()
object.rjust(width[, fillchar])
.rstrip()
object.rstrip()
.split()
object.split(delimiter, splits)
.splitlines()
object.splitlines([keeplinebreaks])
Splits the string object into a list. The splitting is done at line breaks. The optional parameter keeplinebreaks specifies if the line breaks should be included (True), or not (False). Default value is False
.startswith()
object.startswith(string, start, end)
.strip()
object.strip(characters)
.swapcase()
object.swapcase()