str
  • References/Python/Python/Built-in Types

class str(object='') class str(object=b'', encoding='utf-8', errors='strict') Return a string version

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

pop(key[, default]) If key is in the dictionary, remove it and return its value, else return default. If default

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

start The value of the start parameter (or 0 if the parameter was not supplied)

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

class dict(**kwarg) class dict(mapping, **kwarg) class dict(iterable, **kwarg) Return

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

strides A tuple of integers the length of ndim giving the size in bytes to access each element for each dimension

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

bytes.isdigit() bytearray.isdigit() Return true if all bytes in the sequence are ASCII decimal digits and the sequence

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

float.hex() Return a representation of a floating-point number as a hexadecimal string. For finite floating-point numbers, this

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

isdisjoint(other) Return True if the set has no elements in common with other. Sets are disjoint if and

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

str.splitlines([keepends]) Return a list of the lines in the string, breaking at line boundaries. Line breaks are not included

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

nbytes nbytes == product(shape) * itemsize == len(m.tobytes()). This is the amount of space in bytes that the array

2025-01-10 15:47:30