From 7ef9295faeadb5de754c396218ca12c1294aff01 Mon Sep 17 00:00:00 2001
From: Bernard Yeo <34849672+bernard-mlab@users.noreply.github.com>
Date: Tue, 27 Nov 2018 11:01:42 +0800
Subject: [PATCH] formatting changes (#23803)
---
guide/english/python/max-function/index.md | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/guide/english/python/max-function/index.md b/guide/english/python/max-function/index.md
index 43d39fcff7..09f44aca4e 100644
--- a/guide/english/python/max-function/index.md
+++ b/guide/english/python/max-function/index.md
@@ -6,9 +6,9 @@ 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.
-Syntax:
-max(iterable, *iterables[,key, default])
-max(arg1, arg2, *args[, key])
+
Syntax:
+
_max(iterable, *iterables[,key, default])_
+
_max(arg1, arg2, *args[, key])_
Valid Arguments: