InterviewSolution
Saved Bookmarks
| 1. |
Write a program to store marks of students in two different lists find whether they are identical or not |
|
Answer» rks of student 1a = [ 10, 13, 14, 15, 16]#The Marks of student 2b = [ 10, 13, 14, 15, 16]#To check if lists are identicalif a == b: PRINT ("The Marks are identical") ELSE : print ("The Marks are not identical")PLEASE mark as brainliest.P.S I am a PROGRAMMER. |
|