If you have two lists that have the same content in a different order (1, 2, 3, vs 3, 2, 1) are they they the same or different? Python considers them to be different. In some cases order may not matter to you, and you just want to know if the same items exist in… Continue reading Comparing Lists in Python