# import module sys to get the type of exception
import sys
randomList = ['x', 0, 4]
for entry in randomList:
try:
print("The entry is", entry)
r = 1/int(entry)
break
except:
print(sys.exc_info()[0], "occurred.")
print("Next entry.")
print()
print("The reciprocal of", entry, "is", r)