(Part 4) The Python Language

1. Use order of operations to identify the main operator (the last operator that you’ll apply). For example, the main operator in 2 * 5 + 1is +, so 2 * 5 + 1is an addition expression. 2. Identify the operands to the main operator. Then evaluate this expression (the main operator and its two operands) as you would evaluate a binary expression. ................
................