7 lines
233 B
Python
7 lines
233 B
Python
|
|
try:
|
||
|
|
temp = 0/0
|
||
|
|
# 'except' catches any errors that may have been raised between the code of 'try' and 'except'
|
||
|
|
except: # Note: catch all handler ... NOT RECOMMENDED
|
||
|
|
print "An error occurred."
|
||
|
|
# Output : "An error occurred"
|