Built-ins

DelitePy supports a subset of the Python built-ins. We are continuously adding more built-ins, so if what you need is missing, please file a feature request.

Semantics and behavior of the supported built-ins in DelitePy are the same as that of the Python language. Any deviations are explicitly mentioned in the individual built-in’s documentation.

List of the currently supported built-ins:

  • print() function

  • range() function

  • not operator

  • str() constructor

  • int() constructor

  • float() constructor

  • bool() constructor

  • len() function

  • Exception class

  • concurrent() decorator

  • next() function

  • enumerate() function

For reference, Python built-ins documentation: