Login and get codingLet's get some more practice with decorators ... in this Bite you will write a decorator that checks if input arguments (
*args
) are positive integers.You would use
*args
when you're not sure how many arguments might be passed to your function, i.e. it allows you pass an arbitrary number of arguments to your function (source).If one or more of the passed in args are not of type
int
, it throws aTypeError
, if it is anint
but < 0, it throws aValueError
.That's it! Wrap it in a nice decorator and the tests will validate your code. Have fun!
Will you be Pythonista #281 to crack this Bite?
Resolution time: ~23 min. (avg. submissions of 5-240 min.)
Pythonistas rate this Bite 2.83 on a 1-10 difficulty scale.
» You can do it! 😌