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

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

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

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

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

container.__iter__() Return an iterator object. The object is required to support the iterator protocol described below. If

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

str.encode(encoding="utf-8", errors="strict") Return an encoded version of the string as a bytes object. Default encoding is

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
memoryview.shape
  • References/Python/Python/Built-in Types

shape A tuple of integers the length of ndim giving the shape of the memory as an N-dimensional array.

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