
Built-in Functions — Python 3.14.5 documentation
1 day ago · Built-in Functions ¶ The Python interpreter has a number of functions and types built into it that are always available. They are listed here in alphabetical order.
math — Mathematical functions — Python 3.14.5 documentation
1 day ago · This module provides access to common mathematical functions and constants, including those defined by the C standard. These functions cannot be used with complex numbers; use the …
functools — Higher-order functions and operations on ... - Python
2 days ago · functools — Higher-order functions and operations on callable objects ¶ Source code: Lib/functools.py The functools module is for higher-order functions: functions that act on or return …
Python 3.14.5 documentation
1 day ago · What's new in Python 3.14? Or all "What's new" documents since Python 2.0 Tutorial Start here: a tour of Python's syntax and features Library reference Standard library and builtins Language …
operator — Standard operators as functions - Python
1 day ago · The functions fall into categories that perform object comparisons, logical operations, mathematical operations and sequence operations. The object comparison functions are useful for …
Numeric and Mathematical Modules — Python 3.14.5 documentation
2 days ago · Numeric and Mathematical Modules ¶ The modules described in this chapter provide numeric and math-related functions and data types. The numbers module defines an abstract …
itertools — Functions creating iterators for efficient looping
1 day ago · Itertool Functions ¶ The following functions all construct and return iterators. Some provide streams of infinite length, so they should only be accessed by functions or loops that truncate the …
5. Data Structures — Python 3.14.5 documentation
1 day ago · 5. Data Structures ¶ This chapter describes some things you’ve learned about already in more detail, and adds some new things as well. 5.1. More on Lists ¶ The list data type has some …
Functional Programming Modules — Python 3.14.5 documentation
2 days ago · The modules described in this chapter provide functions and classes that support a functional programming style, and general operations on callables. The following modules are …
4. More Control Flow Tools — Python 3.14.5 documentation
3 days ago · 4. More Control Flow Tools ¶ As well as the while statement just introduced, Python uses a few more that we will encounter in this chapter. 4.1. if Statements ¶ Perhaps the most well-known …