“Tente, exceto na compreensão da lista” Respostas de código

python você pode colocar tentativa, exceto na compreensão da lista

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

Tente, exceto na compreensão da lista

# 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

Respostas semelhantes a “Tente, exceto na compreensão da lista”

Perguntas semelhantes a “Tente, exceto na compreensão da lista”

Mais respostas relacionadas para “Tente, exceto na compreensão da lista” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código