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

repr(object) Return a string containing a printable representation of an object. For many types, this function makes an attempt

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

filter(function, iterable) Construct an iterator from those elements of iterable for which function returns

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

hasattr(object, name) The arguments are an object and a string. The result is True if the string is the name of

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

class frozenset([iterable]) Return a new

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

id(object) Return the “identity” of an object. This is an integer which is guaranteed to be unique and constant for this object

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

__import__(name, globals=None, locals=None, fromlist=(), level=0) Note

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
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