A set is an unordered data structure.
Don't use a set, but rather collections.OrderedDict:
>>> a = collections.OrderedDict.fromkeys([1, 2, 20, 6, 210])
>>> b = collections.OrderedDict.fromkeys([6, 20, 1])
>>> collections.OrderedDict.fromkeys(x for x in a if x not in b)
OrderedDict([(2, None), (210, None)])
Note that the order of b does not matter, so it could be any iterable, but it should be an iterable which supports O(1) membership tests.
Edit: The answer above assumes that you want to be able to perform (ordered) set operations on all occurring collections, in particular also on the result of a former set operation. If this is not necessary, you can simply use lists for some of the collections, and sets for others, e.g.
>>> a = [1, 2, 20, 6, 210]
>>> b = set([6, 20, 1])
>>> [x for x in a if x not in b]
[2, 210]
This loses the order of b, does not allow fast membership tests on a and the result. Sets allow fast membership tests, and lists keep order. If you need both these features on the same collection, then use collections.OrderedDict.