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

reversed(seq) Return a reverse iterator. seq must be an object which has a

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

ord(c) Given a string representing one Unicode character, return an integer representing the Unicode code point of that character

2025-01-10 15:47:30
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
list
  • References/Python/Python/Built-in Functions

class list([iterable]) Rather than being a function,

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

locals() Update and return a dictionary representing the current local symbol table. Free variables are returned by locals()

2025-01-10 15:47:30