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

discard(elem) Remove element elem from the set if it is present.

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

str.rfind(sub[, start[, end]]) Return the highest index in the string where substring sub is found, such that sub

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

contiguous A bool indicating whether the memory is contiguous.

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

bytearray.partition(sep) Split the sequence at the first occurrence of sep, and return a 3-tuple containing the part

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

bytearray.rjust(width[, fillbyte]) Return a copy of the object right justified in a sequence of length width. Padding

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

str.isalpha() Return true if all characters in the string are alphabetic and there is at least one character, false otherwise

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

symmetric_difference(other) set ^ other Return a new set with elements in either the set or other but not

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

bytes.lstrip([chars]) bytearray.lstrip([chars]) Return a copy of the sequence with specified leading bytes removed

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

bytearray.lstrip([chars]) Return a copy of the sequence with specified leading bytes removed. The chars argument is

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

update(other, ...) set |= other | ... Update the set, adding elements from all others.

2025-01-10 15:47:30