pprint.pprint()
  • References/Python/Python/Data Types

pprint.pprint(object, stream=None, indent=1, width=80, depth=None, *, compact=False) Prints the formatted representation of

2025-01-10 15:47:30
pprint.PrettyPrinter.pformat()
  • References/Python/Python/Data Types

PrettyPrinter.pformat(object) Return the formatted representation of object. This takes into account the options passed

2025-01-10 15:47:30
datetime.datetime.astimezone()
  • References/Python/Python/Data Types

datetime.astimezone(tz=None) Return a datetime object with new tzinfo attribute tz, adjusting

2025-01-10 15:47:30
dis.get_instructions()
  • References/Python/Python/Language

dis.get_instructions(x, *, first_line=None) Return an iterator over the instructions in the supplied function, method, source

2025-01-10 15:47:30
datetime.time.isoformat()
  • References/Python/Python/Data Types

time.isoformat() Return a string representing the time in ISO 8601 format, HH:MM:SS.mmmmmm or, if self.microsecond is 0, HH:MM:SS

2025-01-10 15:47:30
decimal.Decimal.min_mag()
  • References/Python/Python/Numeric & Mathematical

min_mag(other, context=None) Similar to the min() method, but the comparison is done using the absolute values

2025-01-10 15:47:30
os.fstat()
  • References/Python/Python/Operating System

os.fstat(fd) Get the status of the file descriptor fd. Return a stat_result object. As

2025-01-10 15:47:30
multiprocessing.managers.SyncManager.dict()
  • References/Python/Python/Concurrent Execution

dict() dict(mapping) dict(sequence) Create a shared dict

2025-01-10 15:47:30
operator.ixor()
  • References/Python/Python/Functional Programming

operator.ixor(a, b) operator.__ixor__(a, b) a = ixor(a, b) is equivalent to a ^= b.

2025-01-10 15:47:30
operator.add()
  • References/Python/Python/Functional Programming

operator.add(a, b) operator.__add__(a, b) Return a + b, for a and b numbers.

2025-01-10 15:47:30