pikapython/examples/builtins/file_nofound.py

5 lines
75 B
Python
Raw Normal View History

2022-08-06 17:59:32 +08:00
try:
f = open("_no_file.txt", "r")
except:
print("File not found")