
Built-in Functions — Python 3.14.2 documentation
2 days ago · The built-in functions globals() and locals() return the current global and local namespace, respectively, which may be useful to pass around for use as the second and third …
builtins — Built-in objects — Python 3.14.2 documentation
2 days ago · This module is not normally accessed explicitly by most applications, but can be useful in modules that provide objects with the same name as a built-in value, but in which the …
Built-in Types — Python 3.14.2 documentation
2 days ago · The principal built-in types are numerics, sequences, mappings, classes, instances and exceptions. Some collection classes are mutable. The methods that add, subtract, or …
The Python Standard Library — Python 3.14.2 documentation
2 days ago · The library contains built-in modules (written in C) that provide access to system functionality such as file I/O that would otherwise be inaccessible to Python programmers, as …
operator — Standard operators as functions — Python 3.14.2 …
2 days ago · The operator module exports a set of efficient functions corresponding to the intrinsic operators of Python. For example, operator.add(x, y) is equivalent to the expression x+y.
IDLE — Python editor and shell — Python 3.14.2 documentation
2 days ago · For Python code, at the shell prompt or in an editor, these are keywords, builtin class and function names, names following class and def, strings, and comments.
Introduction — Python 3.14.2 documentation
2 days ago · This manual is organized “from the inside out:” it first describes the built-in functions, data types and exceptions, and finally the modules, grouped in chapters of related modules.
Built-in Exceptions — Python 3.14.2 documentation
2 days ago · The built-in exceptions listed in this chapter can be generated by the interpreter or built-in functions. Except where mentioned, they have an “associated value” indicating the …
Python Module Index — Python 3.14.2 documentation
2 days ago · Python Module Index _ | a | b | c | d | e | f | g | h | i | j | k | l | m | n | o | p | q | r | s | t | u | v | w | x | z
6. Modules — Python 3.14.2 documentation
2 days ago · Some modules are built into the interpreter; these provide access to operations that are not part of the core of the language but are nevertheless built in, either for efficiency or to …