Challenge: Type Validation Decorator
Tarea
Swipe to start coding
Create a decorator that validates the input data for a function, and ensure that it is flexible enough to handle functions that take a varying number of arguments.
- Define the
int_validatedecorator that takes afunc(function) as an argument. - Inside
int_validate(), define awrapperfunction that takes a varying number of arguments. - For each argument, check if its type is
int. If the type is not int, raise aTypeErrorwith the message"The function expects the integer type". - Call the
func()with the arguments taken bywrapper(), and return its result (don't forget to unpack the arguments). - The
int_validate()decorator should return thewrapperfunction without calling it. - Decorate the
int_sum()function using theint_validatedecorator.
Solución
¿Todo estuvo claro?
¡Gracias por tus comentarios!
Sección 3. Capítulo 4
single
Pregunte a AI
Pregunte a AI
Pregunte lo que quiera o pruebe una de las preguntas sugeridas para comenzar nuestra charla
Awesome!
Completion rate improved to 6.67
Challenge: Type Validation Decorator
Desliza para mostrar el menú
Tarea
Swipe to start coding
Create a decorator that validates the input data for a function, and ensure that it is flexible enough to handle functions that take a varying number of arguments.
- Define the
int_validatedecorator that takes afunc(function) as an argument. - Inside
int_validate(), define awrapperfunction that takes a varying number of arguments. - For each argument, check if its type is
int. If the type is not int, raise aTypeErrorwith the message"The function expects the integer type". - Call the
func()with the arguments taken bywrapper(), and return its result (don't forget to unpack the arguments). - The
int_validate()decorator should return thewrapperfunction without calling it. - Decorate the
int_sum()function using theint_validatedecorator.
Solución
¿Todo estuvo claro?
¡Gracias por tus comentarios!
Sección 3. Capítulo 4
single