A quick way to return list without a specific element in Python
>>> suits = ["h","c", "d", "s"]
>>> noclubs = list(suits)
>>> noclubs.remove("c")
>>> noclubs
['h', 'd', 's']
If you don't need a seperate noclubs
>>> suits = ["h","c", "d", "s"]
>>> suits.remove("c")
suits = ["h","c", "d", "s"]
noclubs = [x for x in suits if x != "c"]