Computer Science - Text-Based Programming - Python - Operators (arithmetic, comparison, logical) - All Python Operators
4 sections. Section 1 'Arithmetic Operators': + (add: 5+3=8), - (subtract: 5-3=2), * (multiply: 5*3=15), / (divide: 5/3=1.667), // (floor divide: 5//3=1), % (modulo/remainder: 5%3=2), ** (power: 5**3=125). Order of operations: PEMDAS applies! Parentheses first. Section 2 'Comparison Operators': == (