Scenario
In this challenge, we will try to get conversant with the order of arithmetic operators in Python. Rewrite the equation as a Python expression and get the result of the equation:
5(4-2)+((100)/((5)/(2)))2
Python follows the mathematical rules that you're accustomed to. A lot of what you'd expect to work mathemati be intuitively tried out in Python, and will often work.
Scenario
In this challenge, we will try to get conversant with the order of arithmetic operators in Python. Rewrite the equation as a Python expression and get the result of the equation:
100 5(4-2)+ 2 51 2
Python follows the mathematical rules that you're accustomed to.A lot of what you'd expect to work mathemati be intuitively tried out in Python,and will often work.