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
*1) are positive integers. If one or more of the passed in args are not of typeint
, 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!
*1) 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
Will you be Pythonista #276 to crack this Bite?
Resolution time: ~23 min. (avg. submissions of 5-240 min.)
Pythonistas rate this Bite 3.0 on a 1-10 difficulty scale.
» You can do it! 😌