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
calendar.month()
  • References/Python/Python/Data Types

calendar.month(theyear, themonth, w=0, l=0) Returns a month’s calendar in a multi-line string using the formatmonth()

2025-01-10 15:47:30
types.TracebackType
  • References/Python/Python/Data Types

types.TracebackType The type of traceback objects such as found in sys.exc_info()[2].

2025-01-10 15:47:30
BlockingIOError.characters_written
  • References/Python/Python/Built-in Exceptions

characters_written An integer containing the number of characters written to the stream before it blocked. This attribute is

2025-01-10 15:47:30
msvcrt.putwch()
  • References/Python/Python/MS Windows

msvcrt.putwch(unicode_char) Wide char variant of putch(), accepting a Unicode value.

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
gzip.GzipFile.peek()
  • References/Python/Python/Data Compression

peek(n) Read n uncompressed bytes without advancing the file position. At most one single read on the compressed stream

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

classmethod datetime.strptime(date_string, format) Return a datetime corresponding to date_string, parsed

2025-01-10 15:47:30
symtable.SymbolTable
  • References/Python/Python/Language

class symtable.SymbolTable A namespace table for a block. The constructor is not public.

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

itertools.tee(iterable, n=2) Return n independent iterators from a single iterable. Roughly equivalent to:

2025-01-10 15:47:30