Write a program to store marks of students in two different lists find whether they are identical or not
Answers
Answered by
3
#The Marks of student 1
a = [ 10, 13, 14, 15, 16]
#The Marks of student 2
b = [ 10, 13, 14, 15, 16]
#To check if lists are identical
if a == b:
print ("The Marks are identical")
else :
print ("The Marks are not identical")
Please mark as brainliest.
P.S I am a programmer.
Similar questions