dict.popitem()
  • References/Python/Python/Built-in Types

popitem() Remove and return an arbitrary (key, value) pair from the dictionary.

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

intersection(other, ...) set & other & ... Return a new set with elements common to the set and all others

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

bytes.ljust(width[, fillbyte]) bytearray.ljust(width[, fillbyte]) Return a copy of the object left justified in

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

bytes.find(sub[, start[, end]]) bytearray.find(sub[, start[, end]]) Return the lowest index in the data where the

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

bytes.partition(sep) bytearray.partition(sep) Split the sequence at the first occurrence of sep, and return

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

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

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

str.index(sub[, start[, end]]) Like find(), but raise

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

__eq__(exporter) A memoryview and a

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

step The value of the step parameter (or 1 if the parameter was not supplied)

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

str.expandtabs(tabsize=8) Return a copy of the string where all tab characters are replaced by one or more spaces, depending

2025-01-10 15:47:30