0 votes
in Python by
Read the below program code carefully,

i=(12, 20, 1, 0, 25)  

i.sort()  

print(i)  

What will be the output of this program?

a) 0 1 12 20 25

b) 1 12 20 25

c) FunctionError

d) AttributeError
...