La solution
01: try:
02: with open('fichier.txt', 'r') as fic:
03: for line in fic:
04: print(line, end='')
05: except FileNotFoundError as e:
06: print('Le fichier {} n\'existe pas !'.format(e.filename))
07: exit(1)
08: except...
