1.

Indicate the error message which displays, if the following statement is executed: int a[5]={28,32,45,68,12};

Answer»

ANSWER:

list1 = [28,32,45,68,12]  

print(list1.index(5))  

     

        (OR)

list2 = ['cat', 'bat', 'mat', 'cat', 'pet']  

print(list2.index('cat'))  

hope it helps you

good LUCK :)

brainliest PLS :)



Discussion

No Comment Found