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

globals() Return a dictionary representing the current global symbol table. This is always the dictionary of the current module

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

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

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