A quick way to return list without a specific element in Python February 15, 2023 by Tarik suits = ["h","c", "d", "s"] noclubs = [x for x in suits if x != "c"]