Set and change the values of object attributes.
Consider the following code segment:
class ABC:
def __init__(self):
self.i = 12
i = 34
c = ABC()
b = ABC()
b.i = 86
c.i = 56
What are the initial and final values of c.i?
a.)
c.i = 12, c.i = 56
b.)
c.i = 34, c.i = 86
c.)
c.i = 12, c.i = 86
d.)
c.i = 34, c.i = 56