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

class dict(**kwarg) class dict(mapping, **kwarg) class dict(iterable, **kwarg) Create

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

isinstance(object, classinfo) Return true if the object argument is an instance of the classinfo argument

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

pow(x, y[, z]) Return x to the power y; if z is present, return x to the power y

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

dir([object]) Without arguments, return the list of names in the current local scope. With an argument, attempt to return a

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

iter(object[, sentinel]) Return an iterator object. The first argument is interpreted

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

divmod(a, b) Take two (non complex) numbers as arguments and return a pair of numbers consisting of their quotient and remainder

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

reversed(seq) Return a reverse iterator. seq must be an object which has a

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

class property(fget=None, fset=None, fdel=None, doc=None) Return a property attribute. fget

2025-01-10 15:47:30