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

iterator.__iter__() Return the iterator object itself. This is required to allow both containers and iterators to be used with

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

class.mro() This method can be overridden by a metaclass to customize the method resolution order for its instances. It is called

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

str.ljust(width[, fillchar]) Return the string left justified in a string of length width. Padding is done using the

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

readonly A bool indicating whether the memory is read only.

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

str.zfill(width) Return a copy of the string left filled with ASCII '0' digits to make a string of length width

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

str.swapcase() Return a copy of the string with uppercase characters converted to lowercase and vice versa. Note that it is

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

bytearray.rindex(sub[, start[, end]]) Like rfind() but raises

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

difference_update(other, ...) set -= other | ... Update the set, removing elements found in others.

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

clear() Remove all items from the dictionary.

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

class list([iterable]) Lists may be constructed in several ways: Using a

2025-01-10 15:47:30