代码之家  ›  专栏  ›  技术社区  ›  Jonathan Mee

在Python中声明文件句柄

  •  0
  • Jonathan Mee  · 技术社区  · 11 年前

    我需要在open上执行try块,但我希望我的变量可以在外部使用:

    inputFile = null #This is the line that I don't know how to write
    try:
        inputFile = open( sys.argv[0] )
    except IOError as e:
        print "ERROR: Could not open " + sys.argv[0]
    
    #use inputFile here
    
    2 回复  |  直到 11 年前
        1
  •  2
  •   Ric    11 年前

    您不需要声明变量,Python使用函数范围。中声明的变量 try 如果分配被执行而没有任何异常,则块将在之后自动可用:

    案例1:无例外

    try:
        inputFile = open( sys.argv[0] )
    except IOError as e:
        print "ERROR: Could not open " + sys.argv[0]
    # inputFile is opened file
    

    案例2:例外

    try:
        inputFile = open( sys.argv[0] )
    except IOError as e:
        print "ERROR: Could not open " + sys.argv[0]
    # inputFile is not defined
    
        2
  •  1
  •   Jayanth Koushik    11 年前

    使用 with .

    try:
        with open(sys.argv[0]) as f:
            # operate on the file
    except IOError as e:
        # handle the exception