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
hex()
  • References/Python/Python/Built-in Functions

hex(x) Convert an integer number to a lowercase hexadecimal string prefixed with “0x”, for example:

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
sum()
  • References/Python/Python/Built-in Functions

sum(iterable[, start]) Sums start and the items of an iterable from left to right and returns the total. start

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
all()
  • References/Python/Python/Built-in Functions

all(iterable) Return True if all elements of the iterable are true (or if the iterable is empty). Equivalent

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
str
  • References/Python/Python/Built-in Functions

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

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

zip(*iterables) Make an iterator that aggregates elements from each of the iterables. Returns

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

class object Return a new featureless object. object is a base for all classes. It has the methods that are common

2025-01-10 15:47:30