float
  • References/Python/Python/Built-in Functions

class float([x]) Return a floating point number constructed from a number or string x. If

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

class bytes([source[, encoding[, errors]]]) Return a new “bytes” object, which is an immutable sequence of integers in the range

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

enumerate(iterable, start=0) Return an enumerate object. iterable must be a sequence, an

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

class bool([x]) Return a Boolean value, i.e. one of True or False. x is converted using the

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

ascii(object) As repr(), return a string containing a printable representation of an object, but escape the non-ASCII

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

class set([iterable]) Return a new

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

map(function, iterable, ...) Return an iterator that applies function to every item of iterable, yielding

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

setattr(object, name, value) This is the counterpart of getattr(). The arguments are an object, a string and an

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

hash(object) Return the hash value of the object (if it has one). Hash values are integers. They are used to quickly compare dictionary keys during a dictionary

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

format(value[, format_spec]) Convert a value to a “formatted” representation, as controlled by format_spec

2025-01-10 15:47:30