Numeric Expressions
Please Log In for full access to the web site.
Note that this link will take you to an external site (https://shimmer.mit.edu) to authenticate, and then you will be redirected back to this page.
Translate each of the expressions below into Python (without simplifying!), preserving order of operation with parentheses as needed.
For example, for the prompt of
\frac{9\times 2}{4 + 6}
we could write the python expression: (9 * 2) / (4 + 6)
.
Link to relevant section of reading
(5 + 5)^{5\times 7} Python Expression:
\sqrt[4]{9\times 5} Python Expression:
2^{(6^5)}Python Expression:
41\mod 8Python Expression:
Next Exercise: Variables and Values