Copyright (c) Hyperion Entertainment and contributors.
Difference between revisions of "AmigaOS Manual: Python Methods"
Jump to navigation
Jump to search
(Listed dictionary methods) |
m (Added dot in front of methods to separate them from functions) |
||
Line 1: | Line 1: | ||
= Built-in Methods for Strings = |
= Built-in Methods for Strings = |
||
− | == capitalize() == |
+ | == .capitalize() == |
− | == center() == |
+ | == .center() == |
− | == count() == |
+ | == .count() == |
− | == decode() == |
+ | == .decode() == |
− | == encode() == |
+ | == .encode() == |
− | == endswith() == |
+ | == .endswith() == |
− | == expandtabs() == |
+ | == .expandtabs() == |
− | == find() == |
+ | == .find() == |
− | == index() == |
+ | == .index() == |
− | == isalnum() == |
+ | == .isalnum() == |
− | == isalpha() == |
+ | == .isalpha() == |
− | == isdecimal() == |
+ | == .isdecimal() == |
− | == isdigit() == |
+ | == .isdigit() == |
− | == islower() == |
+ | == .islower() == |
− | == isnumeric() == |
+ | == .isnumeric() == |
− | == isspace() == |
+ | == .isspace() == |
− | == istitle() == |
+ | == .istitle() == |
− | == isupper() == |
+ | == .isupper() == |
− | == join() == |
+ | == .join() == |
− | == len() == |
+ | == .len() == |
− | == ljust() == |
+ | == .ljust() == |
− | == lower() == |
+ | == .lower() == |
− | == lstrip() == |
+ | == .lstrip() == |
− | == maketrans() == |
+ | == .maketrans() == |
− | == max() == |
+ | == .max() == |
− | == min() == |
+ | == .min() == |
− | == replace() == |
+ | == .replace() == |
− | == rfind() == |
+ | == .rfind() == |
− | == rindex() == |
+ | == .rindex() == |
− | == rjust() == |
+ | == .rjust() == |
− | == rstrip() == |
+ | == .rstrip() == |
− | == split() == |
+ | == .split() == |
− | == splitlines() == |
+ | == .splitlines() == |
− | == startswith() == |
+ | == .startswith() == |
− | == strip() == |
+ | == .strip() == |
− | == swapcase() == |
+ | == .swapcase() == |
− | == title() == |
+ | == .title() == |
− | == translate() == |
+ | == .translate() == |
− | == upper() == |
+ | == .upper() == |
− | == zfill() == |
+ | == .zfill() == |
= Built-in Methods for Lists = |
= Built-in Methods for Lists = |
||
− | == append() == |
+ | == .append() == |
− | == count() == |
+ | == .count() == |
− | == extend() == |
+ | == .extend() == |
− | == index() == |
+ | == .index() == |
− | == insert() == |
+ | == .insert() == |
− | == pop() == |
+ | == .pop() == |
− | == remove() == |
+ | == .remove() == |
− | == reverse() == |
+ | == .reverse() == |
− | == sort() == |
+ | == .sort() == |
= Built-in Methods for Dictionaries = |
= Built-in Methods for Dictionaries = |
||
− | == clear() == |
+ | == .clear() == |
− | == copy() == |
+ | == .copy() == |
− | == fromkeys() == |
+ | == .fromkeys() == |
− | == get() == |
+ | == .get() == |
− | == has_key() == |
+ | == .has_key() == |
− | == items() == |
+ | == .items() == |
− | == keys() == |
+ | == .keys() == |
− | == setdefault() == |
+ | == .setdefault() == |
− | == update() == |
+ | == .update() == |
− | == values() == |
+ | == .values() == |
Revision as of 18:40, 11 February 2021
Contents
- 1 Built-in Methods for Strings
- 1.1 .capitalize()
- 1.2 .center()
- 1.3 .count()
- 1.4 .decode()
- 1.5 .encode()
- 1.6 .endswith()
- 1.7 .expandtabs()
- 1.8 .find()
- 1.9 .index()
- 1.10 .isalnum()
- 1.11 .isalpha()
- 1.12 .isdecimal()
- 1.13 .isdigit()
- 1.14 .islower()
- 1.15 .isnumeric()
- 1.16 .isspace()
- 1.17 .istitle()
- 1.18 .isupper()
- 1.19 .join()
- 1.20 .len()
- 1.21 .ljust()
- 1.22 .lower()
- 1.23 .lstrip()
- 1.24 .maketrans()
- 1.25 .max()
- 1.26 .min()
- 1.27 .replace()
- 1.28 .rfind()
- 1.29 .rindex()
- 1.30 .rjust()
- 1.31 .rstrip()
- 1.32 .split()
- 1.33 .splitlines()
- 1.34 .startswith()
- 1.35 .strip()
- 1.36 .swapcase()
- 1.37 .title()
- 1.38 .translate()
- 1.39 .upper()
- 1.40 .zfill()
- 2 Built-in Methods for Lists
- 3 Built-in Methods for Dictionaries