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