def abrir_archivo(nombre_archivo):
try:
archivo = open(nombre_archivo, r )
except FileNotFoundError:
print("El archivo no fue encontrado")
except:
print("Error desconocido")
else:
print("Abriendo exitosamente")
finally:
print("Finalizando ejecucion")
abrir_archivo(1)
When I run the program, the else line is executed and prints "Opening Successfully", this happens with the numbers 0, 1 and 2. My question is why? Isn t it supposed to give an error? When I pass 3 or -1 or any other number, it does print "Unknown error" (I speak Spanish, if something is not understood... google translate is guilty uu)