PEMDAS reference added.md (#20291)

* Update index.md

* corrected formatting
pull/20074/head^2
MUSSONT 2018-11-02 14:41:16 +00:00 committed by Christopher McCormack
parent 55670f6e87
commit 2d33e01f72
1 changed files with 3 additions and 1 deletions

View File

@ -69,7 +69,9 @@ Consider the expression, <b>“a = 2 + 3”</b>. Here, `2` and `3` are the <i>op
</tr>
</table>
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