From 5d0cea176f8020252db097042d00106b4db2287a Mon Sep 17 00:00:00 2001 From: Taiyue Tan <30404851+ryotokuro@users.noreply.github.com> Date: Fri, 22 Mar 2019 04:41:33 +1100 Subject: [PATCH] changes to grammar/punctuation (#28356) --- guide/english/python/max-function/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/python/max-function/index.md b/guide/english/python/max-function/index.md index 09f44aca4e..67a6434963 100644 --- a/guide/english/python/max-function/index.md +++ b/guide/english/python/max-function/index.md @@ -5,7 +5,7 @@ title: Python Max Function ## 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:
_max(iterable, *iterables[,key, default])_
_max(arg1, arg2, *args[, key])_