What is the output of the following code if the user enters a 0?try:
value = input ("Enter a value: ")
print (int (value) / len (value))
except ValueError:
print ("Bad input...")
except ZeroDivisionError:
print ("Very bad input...")
except TypeError:
print ("Very very bad input...")
except:
print ("Booo!")