“Naikkan ular piton” Kode Jawaban

Kecuali sebagai pengecualian:

>>> 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

menangkap data kesalahan dengan kecuali 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

Naikkan ular piton

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

Jawaban yang mirip dengan “Naikkan ular piton”

Pertanyaan yang mirip dengan “Naikkan ular piton”

Lebih banyak jawaban terkait untuk “Naikkan ular piton” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya