“Atrapando excepciones en Python” Código de respuesta

Cómo imprimir error en intento excepto python

try:
  # some code
except Exception as e:
	print("ERROR : "+str(e))
Jenova

Python captura todas las excepciones

try:
    raise Exception("Oh no! An error happened!")
except Exception as err:
    print("An error was handled")
finally:
  	print("This runs either way.")
Mattalui

Atrapando excepciones en Python

# import module sys to get the type of exception
import sys

randomList = ['x', 0, 4]

for entry in randomList:
    try:
        print("The entry is", entry)
        r = 1/int(entry)
        break
    except:
        print(sys.exc_info()[0], "occurred.")
        print("Next entry.")
        print()
print("The reciprocal of", entry, "is", r)
Outrageous Ostrich

Respuestas similares a “Atrapando excepciones en Python”

Preguntas similares a “Atrapando excepciones en Python”

Más respuestas relacionadas con “Atrapando excepciones en Python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código