str.endswith()
  • References/Python/Python/Built-in Types

str.endswith(suffix[, start[, end]]) Return True if the string ends with the specified suffix, otherwise

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

symmetric_difference_update(other) set ^= other Update the set, keeping only elements found in either set, but not

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

get(key[, default]) Return the value for key if key is in the dictionary, else default. If default

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

bytearray.upper() Return a copy of the sequence with all the lowercase ASCII characters converted to their corresponding uppercase

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

bytearray.expandtabs(tabsize=8) Return a copy of the sequence where all ASCII tab characters are replaced by one or more ASCII

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

bytearray.startswith(prefix[, start[, end]]) Return True if the binary data starts with the specified prefix

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

class frozenset([iterable]) Return a new set or frozenset object whose elements are taken from iterable. The elements

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

str.strip([chars]) Return a copy of the string with the leading and trailing characters removed. The chars argument

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

bytes.split(sep=None, maxsplit=-1) bytearray.split(sep=None, maxsplit=-1) Split the binary sequence into subsequences

2025-01-10 15:47:30