“Spróbuj z wyjątkiem zrozumienia listy” Kod odpowiedzi

Python możesz postawić próbę, z wyjątkiem zrozumienia listy

def catch(func, *args, handle=lambda e : None, **kwargs):  
     try:  
         return func(*args, **kwargs)  
     except Exception as e:  
         return handle(e)
Exuberant Earthworm

Spróbuj z wyjątkiem zrozumienia listy

# Python List Comprehension Error Handling:
# The correct responses to the question "how to handle exceptions in a list 
# comprehension" are all expressing part of all of this truth: 1) literally, 
# i.e. lexically IN the comprehension itself, you can't; 2) practically, you 
# delegate the job to a function or check for error prone values when that's 
# feasible.
Joyous Jaguar

Odpowiedzi podobne do “Spróbuj z wyjątkiem zrozumienia listy”

Pytania podobne do “Spróbuj z wyjątkiem zrozumienia listy”

Więcej pokrewnych odpowiedzi na “Spróbuj z wyjątkiem zrozumienia listy” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu