
Aug. 10, 2020
12:19 p.m.
On 8/10/20 7:20 AM, haael wrote:
myset = set.UNIVERSAL myset.remove(element)
You do realize that set.UNIVERSAL isn't the set of everything anymore? You bound myset to be an alias for set.UNIVERSAL and then modified it. You likely wanted to make a copy of set.UNIVERSAL, not just bind an alias to it here. -- Richard Damon