Finding elements not in list
Haloo people! How long has it been since I’ve done a blog post? Welp, I’ve finished my long break and now it’s time to get back to work. Today, I’ll be writing a python program that prints the elements of one list (a) that are not in the other list (b) as a list. My conditions are: If the lists have the same elements, it will print an empty list. If the first list (a) is an empty list, it’ll print an empty list. An example - ...