Skip to content

Commit 9e4d9ea

Browse files
authored
Update DecisionTree.py
读取和存取的时候用 'wb' 和 'rb' 养成好习惯。
1 parent 62b939a commit 9e4d9ea

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/python/3.DecisionTree/DecisionTree.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -290,20 +290,20 @@ def classify(inputTree, featLabels, testVec):
290290
def storeTree(inputTree, filename):
291291
import pickle
292292
# -------------- 第一种方法 start --------------
293-
fw = open(filename, 'w')
293+
fw = open(filename, 'wb')
294294
pickle.dump(inputTree, fw)
295295
fw.close()
296296
# -------------- 第一种方法 end --------------
297297

298298
# -------------- 第二种方法 start --------------
299-
with open(filename, 'w') as fw:
299+
with open(filename, 'wb') as fw:
300300
pickle.dump(inputTree, fw)
301301
# -------------- 第二种方法 start --------------
302302

303303

304304
def grabTree(filename):
305305
import pickle
306-
fr = open(filename)
306+
fr = open(filename,'rb')
307307
return pickle.load(fr)
308308

309309

@@ -357,4 +357,4 @@ def ContactLensesTest():
357357

358358
if __name__ == "__main__":
359359
fishTest()
360-
# ContactLensesTest()
360+
# ContactLensesTest()

0 commit comments

Comments
 (0)