The max()
function returns the maximum of the provided arguments. You can pass either an arbitrary number of values, comma-separated, or an iterable as arguments. An optional key
function argument allows you to customize the calculation of the maximum by explicitly defining the weight of each value in the iterable that is used as a basis of comparison.
Here’s an example:
>>> max(1, 2, 3) 3 >>> max(1, 2, 3, key = lambda x: -x) 1
Syntax max()
Syntax:
max(iterable, *[, key, default])
max(arg1, arg2, *args[, key])
Argument | iterable | An iterable of elements. |
Argument | arg1, arg2 , *args | At least two arguments —but more are allowed. |
Argument | key | Key function that associates a numerical value to each element that is used as the basis of comparison. |
Return Value | object | Returns the maximum element from the arguments |
Return Value max()
The max()
function returns the maximum among at least two arguments.
>>> max(1, 2, 3) 3
Summary
The max()
function returns the maximum of the provided arguments.
>>> max(1, 2, 3) 3
- You can pass either an arbitrary number of values, comma-separated (see before), or
- An iterable as arguments (see next).
>>> max([1, 2, 3]) 3
An optional key
function argument allows you to customize the calculation of the maximum by explicitly defining the weight of each value in the iterable that is used as a basis of comparison.
>>> max([1, 2, 3], key = lambda x: -x) 1
Where to Go From Here?
Enough theory. Let’s get some practice!
Coders get paid six figures and more because they can solve problems more effectively using machine intelligence and automation.
To become more successful in coding, solve more real problems for real people. That’s how you polish the skills you really need in practice. After all, what’s the use of learning theory that nobody ever needs?
You build high-value coding skills by working on practical coding projects!
Do you want to stop learning with toy projects and focus on practical code projects that earn you money and solve real problems for people?
🚀 If your answer is YES!, consider becoming a Python freelance developer! It’s the best way of approaching the task of improving your Python skills—even if you are a complete beginner.
If you just want to learn about the freelancing opportunity, feel free to watch my free webinar “How to Build Your High-Income Skill Python” and learn how I grew my coding business online and how you can, too—from the comfort of your own home.