7 lines
159 B
Python
7 lines
159 B
Python
|
|
try:
|
||
|
|
# This will cause an exception, which will then be caught.
|
||
|
|
print array[len(array)]
|
||
|
|
except IndexError as e:
|
||
|
|
# Print the exception.
|
||
|
|
print e
|