Quiz (1 point)
Given that:
statement at line 7, tab 2 =
return self.age * 12
Prove that:
statement at line 7, tab 2 =
return __mul__(self.age, 12)
The following properties may be helpful:
- expression a * b =
__mul__(a, b)
- a = a
if expression
self.age
* 12 =__mul__(self.age, 12)
, thenreturn self.age * 12
=return __mul__(self.age, 12)
if the following are true:
- a = b
- b = c
then a = c
Please write your proof in the table below. Each row should contain one claim. The last claim is the statement that you are trying to prove.