Q. What will be the output of the following Python code?
Code:
class tester:
def __init__(self, id):
self.id = str(id)
id="224"
>>>temp = tester(12)
>>>print(temp.id)
β
Correct Answer: (A)
12