📖 INDEX
LOADING ENGINE...
min()
PYTHON REFERENCE // min
Returns the smallest item in an iterable
Syntax
min(1, 5, 2) # 1Examples
Example 01Basic Usage
min(1, 5, 2) # 1Best Practices
- Consult official Python documentation for advanced usage.
- Ensure proper indentation and Pythonic style (PEP 8).