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