“criar python” Código de respuesta

excepto como excepción:

>>> def catch():
...     try:
...         asd()
...     except Exception as e:
...         print e.message, e.args
... 
>>> catch()
global name 'asd' is not defined ("global name 'asd' is not defined",)
Distinct Dormouse

Catch Data de error con excepto Python

import sys
try:
	S = 1/0 #Create Error
except: # catch *all* exceptions
    e = sys.exc_info()
    print(e) # (Exception Type, Exception Value, TraceBack)

############
#    OR    #
############
try:
	S = 1/0
except ZeroDivisionError as e:
    print(e) # ZeroDivisionError('division by zero')
Cheerful Caracal

criar python

#Raises an error made by the user
if something:
    raise Exception('My error!')
Courageous Corncrake

Respuestas similares a “criar python”

Preguntas similares a “criar python”

Más respuestas relacionadas con “criar python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código