You are viewing a single comment's thread. Return to all comments →
class Calculator: def power(self, n, p): if n < 0 or p < 0: raise Exception("n and p should be non-negative") return n ** p
Seems like cookies are disabled on this browser, please enable them to open this website
An unexpected error occurred. Please try reloading the page. If problem persists, please contact support@hackerrank.com
Day 17: More Exceptions
You are viewing a single comment's thread. Return to all comments →