InterviewSolution
Saved Bookmarks
| 1. |
Indicate the error message which displays, if the following statement is executed: int a[5]={28,32,45,68,12}; |
|
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 :) |
|