set.difference()
  • References/Python/Python/Built-in Types

difference(other, ...) set - other - ... Return a new set with elements in the set that are not in the others.

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

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

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

str.lower() Return a copy of the string with all the cased characters [4] converted to lowercase. The

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

bytearray.center(width[, fillbyte]) Return a copy of the object centered in a sequence of length width. Padding is

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

sort(*, key=None, reverse=None) This method sorts the list in place, using only < comparisons between items

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

bytes.endswith(suffix[, start[, end]]) bytearray.endswith(suffix[, start[, end]]) Return True if the

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

obj The underlying object of the memoryview: >>>

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

definition.__qualname__ The qualified name of the class, function, method, descriptor

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

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

2025-01-10 15:47:30