What Are The Built-In Function Objects Inside DelphiVCL4Python?
December 30, 2021
A built-in function object is a wrapper around a C function. Examples of built-in functions are len() and math.sin() (math is a standard built-in module). The number and type of the arguments are determined by the C function.
You can browse all the built-in function objects available to us for windows development inside the DelphiVCL library using the Python dir() command:
import…