python循环判断异常(异常处理)
#循环只有在没有异常的情况下才会退出while True: try: x = input('Enter the first number:') y = input('Enter the second number:') value = x/y print 'x/y is ', value except