python退出功能不起作用

时间:2017-07-27 14:53:40

标签: python exit

我在我的一个脚本中使用了以下检查:

if os.path.exists(FolderPath) == False:
    print FolderPath, 'Path does not exist, ending script.'
    quit()
if os.path.isfile(os.path.join(FolderPath,GILTS)) == False:
    print os.path.join(FolderPath,GILTS), ' file does not exist, ending script.'
    quit()    
df_gilts = pd.read_csv(os.path.join(FolderPath,GILTS))

足够斯坦,当路径/文件不存在时,我获得以下打印:

  IOError: File G:\On-shoring Project\mCPPI\Reconciliation Tool\Reconciliation Tool Project\3. Python\BootStrap\BBG\2017-07-16\RAW_gilts.csv does not exist

告诉我,即使我已经添加了退出(),它仍在继续使用该脚本。谁能告诉我为什么?

由于

1 个答案:

答案 0 :(得分:5)

the documentationquit()(与site模块添加的其他功能一样)仅供交互使用。

因此,解决方案有两个方面:

  • 检查os.path.exists(os.path.join(FolderPath, GILTS)),而不仅仅是os.path.exists(FolderPath),以确保实际到达试图退出解释器的代码。

  • 使用sys.exit(1)(当然,在模块标题中import sys之后)暂停解释器,退出状态表示脚本出错。

那就是说,您可以考虑使用异常处理:

from __future__ import print_function

path = os.path.join(FolderPath, GILTS)
try:
    df_gilts = pd.read_csv(path)
except IOError:
    print('I/O error reading CSV at %s' % (path,), file=sys.stderr)
    sys.exit(1)