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

chr(i) Return the string representing a character whose Unicode code point is the integer i. For example, chr(97)

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

tuple([iterable]) Rather than being a function,

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

callable(object) Return

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

oct(x) Convert an integer number to an octal string. The result is a valid Python expression. If x is not a Python

2025-01-10 15:47:30