Answer
AttributeError: 'A' object has no attribute '__i'
Work Step by Step
To fix the error, we modify our code as class A:
$ $ $ $ $ $ $ $ $ $ def __init__(self, i):
$ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ self.i = i def main():
$ $ $ $ $ $ $ $ $ $ a = A(5)
$ $ $ $ $ $ $ $ $ $ print(a.i)
main()