From d4b8acfbde34aeb55a938f4a2cc4fb0e1be92c16 Mon Sep 17 00:00:00 2001 From: vishal Date: Mon, 15 Oct 2018 19:29:11 +0530 Subject: [PATCH] Add the text "Comparison" to the article (#18596) --- .../src/pages/guide/english/python/basic-operators/index.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/client/src/pages/guide/english/python/basic-operators/index.md b/client/src/pages/guide/english/python/basic-operators/index.md index cfc68f7544..0a2cd35db2 100644 --- a/client/src/pages/guide/english/python/basic-operators/index.md +++ b/client/src/pages/guide/english/python/basic-operators/index.md @@ -8,7 +8,7 @@ Operators are symbols which tells the interpreter to do a specific operation (vi The different types of operators in Python are listed below: 1. Arithmetic Operators -2. Relational Operators +2. Comparison (Relational) Operators 3. Bitwise Operators 4. Assignment Operators 5. Logical Operators @@ -71,9 +71,9 @@ Consider the expression, “a = 2 + 3”. Here, `2` and `3` are the op Note: To get the result in floating type, one of the operands must also be of float type. -#### Relational Operators +#### Comparison (Relational) Operators -A relational operator is used to compare two operands to decide a relation between them. It returns a boolean value based on the condition. +A comparison or relational operator is used to compare two operands to decide a relation between them. It returns a boolean value based on the condition.