Copyright (c) Hyperion Entertainment and contributors.

AmigaOS Manual: Python Methods: Difference between revisions

From AmigaOS Documentation Wiki
Jump to navigation Jump to search
Content deleted Content added
Listed list methods
Listed dictionary methods
Line 55: Line 55:


= Built-in Methods for Dictionaries =
= Built-in Methods for Dictionaries =
== clear() ==
== copy() ==
== fromkeys() ==
== get() ==
== has_key() ==
== items() ==
== keys() ==
== setdefault() ==
== update() ==
== values() ==

Revision as of 16:11, 11 February 2021

Built-in Methods for Strings

capitalize()

center()

count()

decode()

encode()

endswith()

expandtabs()

find()

index()

isalnum()

isalpha()

isdecimal()

isdigit()

islower()

isnumeric()

isspace()

istitle()

isupper()

join()

len()

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()