我从未使用os import *
所以此重复建议无效。请查看说明中的代码。
我不确定为什么我遇到这个错误。我认为使用open()方法会很简单,但它不起作用。我有一个.txt文件,我试图打开,但是我收到了这个错误。
我不确定为什么要求整数与字符串打开.txt文件
import os
import spacy
import en_core_web_sm
import plac
from collections import Counter
from __future__ import unicode_literals
file = 'spacy_sample.txt'
with open(file, 'r' )as f:
'''Do something'''
TypeError Traceback (most recent call last)
<ipython-input-198-b6441a57e84e> in <module>()
----> 1 with open(file, 'r' )as f:
2 print(f)
TypeError: an integer is required (got type str)