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

delattr(object, name) This is a relative of setattr(). The arguments are an object and a string. The string must

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

chr(i) Return the string representing a character whose Unicode code point is the integer i. For example, chr(97)

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

print(*objects, sep=' ', end='\n', file=sys.stdout, flush=False) Print objects to the text stream file, separated

2025-01-10 15:47:30