Concept

Operators & Operands in Python

Operators are things that represent computational processes in Python. These include +, -, *, **, //, %, and /.

  • "+" = Addition

  • "-" = Subtraction

  • "*" = Multiplication

  • "**" = Exponent

  • "//" = Divide, but only include whole number in result

  • "%" = Modulo, which only displays remainder of operands

Operands are the values being acted on by the operator.

0

2

Updated 2021-06-29

Tags

Data Science