HW#3 Fix read_data function for python3
Closed this issue · 1 comments
ranamihir commented
In HW3, to make the read_data()
function in load.py
work with python3, the line:
words = filter(None, words)
should be replaced with:
words = list(filter(None, words))
XintianHan commented
Add a comment for python 3 users in the code.