From 2d33e01f7254584f300cf10fddf5a9799fde9afb Mon Sep 17 00:00:00 2001 From: MUSSONT <37769039+MUSSONT@users.noreply.github.com> Date: Fri, 2 Nov 2018 14:41:16 +0000 Subject: [PATCH] PEMDAS reference added.md (#20291) * Update index.md * corrected formatting --- guide/english/python/basic-operators/index.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/guide/english/python/basic-operators/index.md b/guide/english/python/basic-operators/index.md index 361c02c8ef..579429ad77 100644 --- a/guide/english/python/basic-operators/index.md +++ b/guide/english/python/basic-operators/index.md @@ -69,7 +69,9 @@ Consider the expression, “a = 2 + 3”. Here, `2` and `3` are the op -Note: To get the result as floating type, one of the operands must also be of float type. +Notes: +- To get the result in floating type, one of the operands must also be of float type. +- Python arithmetic operations follow the PEMDAS order of precedence. #### Comparison (Relational) Operators