issubclass()
  • References/Python/Python/Built-in Functions

issubclass(class, classinfo) Return true if class is a subclass (direct, indirect or virtual)

2025-01-10 15:47:30
any()
  • References/Python/Python/Built-in Functions

any(iterable) Return True if any element of the iterable is true. If the iterable is empty, return False

2025-01-10 15:47:30
int
  • References/Python/Python/Built-in Functions

class int(x=0) class int(x, base=10) Return an integer object constructed from a number or string x, or

2025-01-10 15:47:30
memoryview()
  • References/Python/Python/Built-in Functions

memoryview(obj) Return a “memory view” object created from the given argument. See

2025-01-10 15:47:30
round()
  • References/Python/Python/Built-in Functions

round(number[, ndigits]) Return the floating point value number rounded to ndigits digits after the decimal

2025-01-10 15:47:30
type
  • References/Python/Python/Built-in Functions

class type(object) class type(name, bases, dict) With one argument, return the type of an object. The return

2025-01-10 15:47:30
max()
  • References/Python/Python/Built-in Functions

max(iterable, *[, key, default]) max(arg1, arg2, *args[, key]) Return the largest item in an iterable or the largest

2025-01-10 15:47:30
compile()
  • References/Python/Python/Built-in Functions

compile(source, filename, mode, flags=0, dont_inherit=False, optimize=-1) Compile the source into a code or AST object

2025-01-10 15:47:30
sorted()
  • References/Python/Python/Built-in Functions

sorted(iterable[, key][, reverse]) Return a new sorted list from the items in iterable. Has

2025-01-10 15:47:30
bytearray
  • References/Python/Python/Built-in Functions

class bytearray([source[, encoding[, errors]]]) Return a new array of bytes. The bytearray class is a mutable sequence

2025-01-10 15:47:30