Account
Categories

Division Operator


Definition:

The Division Operator (/) is used to divide one value by another. These values are called operands.

It helps in performing mathematical calculations in programs or webpages.

Syntax:

result = left_operand / right_operand

Example:

a = 20
b = 5
div_result = a / b
print("The division is:", div_result)

Output: