obj=lists[0]
在下面的代碼中做了什麼?混淆變量的必要性
lists = []
infile = open(path, 'rb')
while True:
try:
lists.append(pickle.load(infile))
except EOFError:
break
obj=lists[0]
while len(lists) > 3:
lists.pop(0)
print(lists)
infile.close()
我試圖理解它,但我似乎無法看到任何理由。
對於你所說的代碼,它似乎沒有任何用途。 –
可能從一些重構遺留下來。 –