Can you guess the output of the following Python Code??
try:
odd_numbers = [1,3,5,7]
print(odd_numbers[5])

except ZeroDivisionError:
print("Denominator cannot be 0.")
except IndexError:
print("Index Out of Bound.")


Posted on by