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

vars([object]) Return the

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

getattr(object, name[, default]) Return the value of the named attribute of object. name must be a string

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

staticmethod(function) Return a static method for function. A static method does not

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

eval(expression, globals=None, locals=None) The arguments are a string and optional globals and locals. If provided, globals

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

class complex([real[, imag]]) Return a complex number with the value real + imag*1j or convert a string or

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

min(iterable, *[, key, default]) min(arg1, arg2, *args[, key]) Return the smallest item in an iterable or the smallest

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

range(stop) range(start, stop[, step]) Rather than being a function,

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

classmethod(function) Return a class method for function. A class method receives the

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

class slice(stop) class slice(start, stop[, step]) Return a slice object

2025-01-10 15:47:30
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