iterator.
  • References/Python/Python/Built-in Types

iterator.__next__() Return the next item from the container. If there are no further items, raise the

2025-01-10 15:47:30
str.capitalize()
  • References/Python/Python/Built-in Types

str.capitalize() Return a copy of the string with its first character capitalized and the rest lowercased.

2025-01-10 15:47:30
class.
  • References/Python/Python/Built-in Types

class.__mro__ This attribute is a tuple of classes that are considered when looking for base classes during method resolution

2025-01-10 15:47:30
bytes.startswith()
  • References/Python/Python/Built-in Types

bytes.startswith(prefix[, start[, end]]) bytearray.startswith(prefix[, start[, end]]) Return True if

2025-01-10 15:47:30
str.isprintable()
  • References/Python/Python/Built-in Types

str.isprintable() Return true if all characters in the string are printable or the string is empty, false otherwise. Nonprintable

2025-01-10 15:47:30
class.
  • References/Python/Python/Built-in Types

class.__bases__ The tuple of base classes of a class object.

2025-01-10 15:47:30
bytes.lower()
  • References/Python/Python/Built-in Types

bytes.lower() bytearray.lower() Return a copy of the sequence with all the uppercase ASCII characters converted

2025-01-10 15:47:30
memoryview.itemsize
  • References/Python/Python/Built-in Types

itemsize The size in bytes of each element of the memoryview:

2025-01-10 15:47:30
memoryview.suboffsets
  • References/Python/Python/Built-in Types

suboffsets Used internally for PIL-style arrays. The value is informational only.

2025-01-10 15:47:30
str.isdecimal()
  • References/Python/Python/Built-in Types

str.isdecimal() Return true if all characters in the string are decimal characters and there is at least one character, false

2025-01-10 15:47:30