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

exec(object[, globals[, locals]]) This function supports dynamic execution of Python code. object must be either a

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

abs(x) Return the absolute value of a number. The argument may be an integer or a floating point number. If the argument is

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

len(s) Return the length (the number of items) of an object. The argument may be a sequence (such as a string, bytes, tuple

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