执行下面的代码,将会输出( )。 class Re: def __init__(self, a, b): self.a = a self.b = b def __str__(self): return .Re (%d, %d). % (self.a, self.b) def __add__(self,other): return Re(self.a + other.a, self.b + other.b) a = Re(5,6) b = Re(7,8) print (a + b) 选择一项: a. Re (5, 6) b. Re (12, 14) c. Re (7, 8) d. 以上选项都有误