I am currently learning python. I would like to know how can I compare two list. I have two lists:
days = ['sunday', 'monday', 'tuesday', 'wednesday', 'friday']
new_days = ['weekend', 'wednesday', 'saturday', 'sunday', 'monday','thursday']
How can I write, I'm assuming a loop, a code to see if all the elements from the days list are in the new_days list and then if there are any missing elements from the days list that aren't in the new_days list print out how many are missing and print out the ones that are missing? Would I use the all() function to compare the two to begin with?