Perl Primer - University of California, Davis

Operator Meaning = Assign + Add - Subtract * Multiply / // Divide. Integer divide ** Exponentiation % Modulus abs(x) Absolute value of x int(x) x converted to integer float(x) x converted to float += Assign add -= Assign subtract *= Assign multiply /= Assign divide Python allows us to use all standard arithmetic operators on numbers, plus a few ... ................
................