python打开.txt错误文件需要一个整数(得到str类型)

时间:2018-01-31 23:38:28

标签: python

我从未使用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)

0 个答案:

没有答案