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

str.upper() Return a copy of the string with all the cased characters [4] converted to uppercase. Note that str.upper()

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

format A string containing the format (in

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

c_contiguous A bool indicating whether the memory is C-contiguous.

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

intersection_update(other, ...) set &= other & ... Update the set, keeping only elements found in it and

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

ndim An integer indicating how many dimensions of a multi-dimensional array the memory represents.

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

bytes.isalnum() bytearray.isalnum() Return true if all bytes in the sequence are alphabetical ASCII characters or

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

add(elem) Add element elem to the set.

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