code_practice

Hackerrank 30 Days of Code 17 [More Exceptions]

  • By Khel Kim, 김현호
  • 22 Feb 2019
  • Tags : coding_practice

기초를 갈고 닦기 위한 스탭!
Hackerrank 30 Days of Code
문제
More Exceptions

class MyError(Exception):
    def __str__(self):
        return "n and p should be non-negative"

class Calculator():
    def power(self, n,p):
        if n  < 0 or p < 0:
            raise MyError()
        else:
            return n ** p

궁금하신게 있다면 메일 주세요.
k2h7913@daum.net
cafehero123@gmail.com