Copyright (c) Hyperion Entertainment and contributors.

Difference between revisions of "AmigaOS Manual: Python Methods"

From AmigaOS Documentation Wiki
Jump to navigation Jump to search
Line 32: Line 32:
 
== .len() ==
 
== .len() ==
   
  +
<nowiki>object.len()</nowiki>
Returns the length of the string.
 
  +
  +
Returns the length of the string '''object'''.
   
 
== .ljust() ==
 
== .ljust() ==

Revision as of 19:48, 11 February 2021

Built-in Methods for Strings

.capitalize()

object.capitalize()

Capitalizes the first letter of a string object.

.center()

.count()

.decode()

.encode()

.endswith()

.expandtabs()

.find()

.index()

.isalnum()

.isalpha()

.isdecimal()

.isdigit()

object.isdigit()

Returns true if the string object contains only digits.

.islower()

.isnumeric()

.isspace()

.istitle()

.isupper()

.join()

.len()

object.len()

Returns the length of the string object.

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