10 lines
170 B
Python
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() |