7 lines
75 B
Python
7 lines
75 B
Python
# simple error script
|
|
|
|
def divide_by_zero():
|
|
print 1/0
|
|
|
|
divide_by_zero()
|