这似乎与我a = a-b
不同a -= b
,我不知道为什么。
代码:
cache = {}
def part(word):
if word in cache:
return cache[word]
else:
uniq = set(word)
cache[word] = uniq
return uniq
w1 = "dummy"
w2 = "funny"
# works
test = part(w1)
print(test)
test = test-part(w2)
print(test)
print(cache)
# dont't works
test = part(w1)
print(test)
test -= part(w2) # why it touches "cache"?
print(test)
print(cache)
结果:
set(['y', 'm', 'u', 'd'])
set(['m', 'd'])
{'dummy': set(['y', 'm', 'u', 'd']), 'funny': set(['y', 'n', 'u', 'f'])}
set(['y', 'm', 'u', 'd'])
set(['d', 'm'])
{'dummy': set(['d', 'm']), 'funny': set(['y', 'n', 'u', 'f'])}
如您所见,第三行和最后一行不同。为什么在第二种情况下变量“缓存”不同?test -= part(w2)
不喜欢test = test-part(w2)
吗?
编辑 1 - 感谢您的回答,但为什么 varcache
会发生变化?