1.

What is the output of the following code ? class tester: def __init__(self, id): self.id = str(id) id="224" >>>temp = tester(12) >>>print(temp.id)

A. 224
B. Error
C. 12
D. None
Answer» D. None


Discussion

No Comment Found