Copyright (c) Hyperion Entertainment and contributors.

AmigaOS Manual: Python Methods

From AmigaOS Documentation Wiki
Revision as of 17:43, 11 February 2021 by Janne Peräaho (talk | contribs) (.len())
Jump to navigation Jump to search

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.

.islower()

.isnumeric()

.isspace()

.istitle()

.isupper()

.join()

.len()

Returns the length of the string.

.ljust()

.lower()

.lstrip()

.maketrans()

.max()

.min()

.replace()

.rfind()

.rindex()

.rjust()

.rstrip()

.split()

.splitlines()

.startswith()

.strip()

.swapcase()

.title()

.translate()

.upper()

.zfill()

Built-in Methods for Lists

.append()

.count()

.extend()

.index()

.insert()

.pop()

.remove()

.reverse()

.sort()

Built-in Methods for Dictionaries

.clear()

.copy()

.fromkeys()

.get()

.has_key()

.items()

.keys()

.setdefault()

.update()

.values()