2021-02-21 19:22:50 +04:00

10 lines
170 B
Python

#exception2.py
try:
f = open("abc.txt", "w")
except Exception as e:
print("Error:" + e)
else:
f.write("Hello World")
f.write("End")
finally:
f.close()