formatting changes (#23803)

This commit is contained in:
Bernard Yeo
2018-11-27 11:01:42 +08:00
committed by Manish Giri
parent 163e5d9331
commit 7ef9295fae

View File

@ -6,9 +6,9 @@ title: Python Max Function
## Arguments ## Arguments
This function takes two or more numbers or any kind of iterable as an argument. While giving an iterable as an argument we must make sure that all the elements in the iterable are of the same type. This means that we cannot pass a list which has both string and integer values stored in it. This function takes two or more numbers or any kind of iterable as an argument. While giving an iterable as an argument we must make sure that all the elements in the iterable are of the same type. This means that we cannot pass a list which has both string and integer values stored in it.
Syntax: <br>Syntax:
max(iterable, *iterables[,key, default]) <br>_max(iterable, *iterables[,key, default])_
max(arg1, arg2, *args[, key]) <br>_max(arg1, arg2, *args[, key])_
Valid Arguments: Valid Arguments: