Sublime Text 2和Repl - 运行python

时间:2014-02-05 22:26:57

标签: python path sublimetext2 sublimerepl

我开始使用Sublime Text 2和REPL并遇到一些问题。 当我运行该文件时,它告诉我文件du不存在。如果直接从终端构建脚本,该脚本将非常完美。

代码

def stopwords(text):
    with open('danish', 'rU') as f:
        for line in f:
            text = text.replace(' '+line.strip()+' ', "")
    return text

日志

IOError: [Errno 2] No such file or directory: 'danish'

我尝试了os.chdir(os.path.dirname(os.path.abspath(sys.argv[0]))) reload(sys)__file__之类的内容,但它们无效。

在通过Sublime Text 2 REPL运行时__file__无效或者文件存储位置的任何想法?

0 个答案:

没有答案