运行下面程序,错误的输入和输出数据是?( )
try: x=int(input()) y=int(input()) m=divmod(x,y) print(m) except: print('error') else: print('right') finally: print('OK')
输入 1 0 输出 error OK
输入 0 5 输出 (0, 0) right OK
输入 5 1 输出 (5, 0) right OK
输入 5 0 输出 0 right OK