Copyright (c) Hyperion Entertainment and contributors.

AmigaOS Manual: Python Methods

From AmigaOS Documentation Wiki
Jump to navigation Jump to search

Built-in Methods for Strings

.capitalize()

stringobject.capitalize()

Returns a string where the first character is upper case. For example:

text = "python for everybody."
txt = text.capitalize()
print( txt )

Output:

  Python for everybody.

.center()

stringobject.center(length[, fillchar])

Returns a string that is aligned to the center using character fillchar. The returned string is length characters long. If the specified length is less than the stringobject string's length, the original stringobject will be returned. If you omit the fill character, space will be used as a filler.

For example:

text = "The Core of the Sun"
txt = text.center( 25, '-' )
print( txt )

Output:

  ---The Core of the Sun---

.count()

stringobject.count(substring[, start][, end])

Returns the number of times the supplied string substring appears in the stringobject string. By default .count() searches the substring from the beginning of the stringobject string to the end of the string.

You can change the search range with the start and end parameters. The start parameter specifies the string position where the search range should start (0 is the start of the string) and the end parameter the string position where the search should end.

For example:

text = "I love AmigaOS. AmigaOS is my favourite operating system."
times = text.count( "AmigaOS" )
print( times )

Output:

  2

.decode()

stringobject.decode(encoding, errors)

.encode()

stringobject.encode(encoding, errors)

.endswith()

stringobject.endswith(suffix, start, end)

.expandtabs()

stringobject.expandtabs(tabsize)

.find()

stringobject.find(string, start, end)

.index()

stringobject.index(string, start, end)

.isalnum()

stringobject.isalnum()

.isalpha()

stringobject.isalpha()

.isdecimal()

stringobject.isdecimal()

.isdigit()

stringobject.isdigit()

Returns true if the string stringobject contains only digits.

.islower()

stringobject.islower()

.isnumeric()

stringobject.isnumeric()

.isspace()

stringobject.isspace()

.istitle()

stringobject.istitle()

.isupper()

stringobject.isupper()

.join()

stringobject.join(sequence)

.len()

stringobject.len()

Returns the length of the string stringobject.

.ljust()

stringobject.ljust(width[, fillchar])

.lower()

stringobject.lower()

.lstrip()

stringobject.lstrip()

.maketrans()

stringobject.maketrans()

.max()

stringobject.max(string)

.min()

stringobject.min(string)

.replace()

stringobject.replace(old, new[, max])

.rfind()

stringobject.rfind(string, start, end)

.rindex()

stringobject.rindex(string, start, end)

.rjust()

stringobject.rjust(width[, fillchar])

.rstrip()

stringobject.rstrip()

.split()

stringobject.split(delimiter, splits)

.splitlines()

stringobject.splitlines([keeplinebreaks])

Splits the string stringobject 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()

stringobject.startswith(string, start, end)

.strip()

stringobject.strip(characters)

.swapcase()

stringobject.swapcase()

.title()

object.title()

.translate()

stringobject.translate(translationtable[, deletechars])

.upper()

stringobject.upper()

.zfill()

stringobject.zfill(width)

Built-in Methods for Lists

.append()

.count()

.extend()

.index()

.insert()

.pop()

.remove()

.reverse()

.sort()

Built-in Methods for Sets

.add()

.clear()

.copy()

.difference()

.difference_update()

.discard()

.intersection()

.intersection_update()

.isdisjoint()

.issubset()

.pop()

.remove()

.symmetric_difference()

.symmetric_difference_update()

.union()

.update()

Built-in Methods for Dictionaries

.clear()

.copy()

.fromkeys()

.get()

.has_key()

.items()

.keys()

.setdefault()

.update()

.values()