我转换了一个巨大的文件,我在python 2.7.3编写它然后现在我想升级到python 3+(我有3.5)。
>python 2to3.py -w viterbi.py
转换为版本3 + 我有错误的部分
import sys
import numpy as np
import pandas as pd
# Counting number of lines in the text file
lines = 0
buffer = bytearray(2048)
with open(inputFilePatheName) as f:
while f.readinto(buffer) > 0:
lines += buffer.count('\n')
我的错误是:
AttributeError: '_io.TextIOWrapper' object has no attribute 'readinto'
这是第一个错误,我无法继续查看是否还有其他错误。我不知道readinto