标签: python python-3.x filenames
我正在使用Python 3,并且正在尝试编写一个函数,该函数以文件名作为参数并返回该文件文本中的单词总数。我不断收到错误“ AttributeError:'_ io.TextIOWrapper'对象没有属性'closes'”,而且我不知道如何解决。任何帮助将不胜感激。
答案 0 :(得分:0)
问题是您引用的函数无效。 file.closes()应该是file.close()
file.closes()
file.close()