guysIm trying to create a time out error, because some function take too long for certains attributes, and i want to skip these timely expensive ones:exemple to clarify:
.try:Timeout_fct( expensive_function(x))except:print('error')i want my my output to be 'error', caused ny the Timeout_fct, in case the expensive_function(x) took more than 5 secs