“Cómo omitir el error Python” Código de respuesta

Skip Error Python

try:
  #line that could cause an error
except:
  pass  
#continue running code from here without stopping on the error
68Duck

Cómo omitir el error Python

  try:
    # what you want to try
  except KeyError:  < error type here
    continue
Hutch Polecat

Respuestas similares a “Cómo omitir el error Python”

Preguntas similares a “Cómo omitir el error Python”

Más respuestas relacionadas con “Cómo omitir el error Python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código