del语句将完全删除该集合:thisset = {"apple", "banana", "cherry"}del thissetprint(thisset)执行结果:Traceback (most recent call last): File "d:\users\xingc\desktop\7.py", line 3, in <module> print(thisset)NameError: name 'thisset' is not defined