April 7, 2019 Intro to Python Programming Tutorial - 03 Youtube - Learn Python 3 for Machine Learning & Web Development [2019] By: Programming with Mosh Progress End Time: 1:16:25 Next Part of Tutorial: Project: Weight Converter NOTES Arithmetic Operations In Python we have the same operations used in math, as well as a few extra ones. There is addition, subtraction, multiplication, and division. Here are a few of the extra operators. By using //, it returns the integer of the division with no remainder. Using the modulus, %, it returns the remainder after performing the division. Finally, ** is exponent, so this will raise a number to the other values power. Then there is the augmented assignment operator. This is done by placing the operator directly before the equal sign. For example: x += 3 is the same as: x = x + 3 Operator Precedence This is the math concept where certain operations are performed before other operations. Many of these in Pyth...