Computer Science

Write following expressions in Python:

Write following expressions in Python: a⁻ⁿ = 1 / aⁿ

Python Data Handling

15 Likes

Answer


a ** -n == 1 / a ** n

Answered By

10 Likes


Related Questions