write the python code to take two lists and check them either identical or not
Answers
Answered by
1
Answer:
lst1=eval(input('Enter the first list:'))
lst2=eval(input('Enter the second list:'))
if lst1==lst2:
print('Both list are identical')
else:
print('Not identical')
Similar questions