|
>>> raise NameError, 'Merhaba' Traceback (most recent call last): File "<stdin>", line 1, in ? NameError: Merhaba
>>> try: ... raise NameError, 'Merhaba' ... except NameError: ... print 'Bir istisna gelip geçti!' ... raise ... Bir istisna gelip geçti! Traceback (most recent call last): File "<stdin>", line 2, in ? NameError: Merhaba
|