Questions tagged «del»


20
什么时候del在python中有用?
我真的想不出python为什么需要del关键字的任何原因(大多数语言似乎没有类似的关键字)。例如,可以删除变量而不是删除变量None。从字典中删除时,del可以添加一个方法。 是否有任何理由保留del在python中,或者它是Python的垃圾收集日的痕迹?

8
在python,del或delattr中哪个更好?
这可能很愚蠢,但已经困扰了我一段时间。 Python提供了两种从对象中删除属性的内置方法,即del命令字和delattr内置函数。我更喜欢delattr,因为我认为它更加明确: del foo.bar delattr(foo, "bar") 但是我想知道它们之间是否存在内在差异。
179 python  del 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.