What is the output of the following python code?

class Acc:

def __init__(self, id):

self.id = id

id = 555

acc = Acc(111)

print acc.id

Posted on by