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
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
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.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
bytes.replace()
  • References/Python/Python/Built-in Types

bytes.replace(old, new[, count]) bytearray.replace(old, new[, count]) Return a copy of the sequence with all occurrences

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

copy() Return a new set with a shallow copy of s.

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
bytearray.strip()
  • References/Python/Python/Built-in Types

bytearray.strip([chars]) Return a copy of the sequence with specified leading and trailing bytes removed. The chars

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

contextmanager.__exit__(exc_type, exc_val, exc_tb) Exit the runtime context and return a Boolean flag indicating if any exception

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

static bytearray.maketrans(from, to) This static method returns a translation table usable for bytes.translate()

2025-01-10 15:47:30