I would like to know how to check if anything is new in a list, like this:
list_1 = [10, 30, 25]
list_2 = get_updated_list()
new_items = get_new_items(list_2)
if new_items is not []:
print('Something is new')
I would highly appreciate it if someone had a solution, I've been thinking on how to do this for so long.