“Prueba atrapar python con abierto” Código de respuesta

Python Archivo Abrir intento excepto error

def FileCheck(fn):
    try:
      open(fn, "r")
      return 1
    except IOError:
      print "Error: File does not appear to exist."
      return 0

result = FileCheck("testfile")
print result
Poor Panther

Prueba atrapar python con abierto

import os ,csv
# Created to ensure file/dataset are being load properly
# Place below your filename with .csv where 'x' is .
data = open('x', 'r')
while True:
  try:
  	if data == open('x'):
  		print('file is open')
  except IOError:
    print('Unable to load files')
    break
Clever Crocodile

Respuestas similares a “Prueba atrapar python con abierto”

Preguntas similares a “Prueba atrapar python con abierto”

Más respuestas relacionadas con “Prueba atrapar python con abierto” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código