Computer Science, asked by kumarnirmal447, 5 months ago

write the python code to take two lists and check them either identical or not​

Answers

Answered by anshika1204
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