pikapython/examples/builtins/file_nofound.py
2023-06-30 00:25:42 +08:00

5 lines
75 B
Python

try:
f = open("_no_file.txt", "r")
except:
print("File not found")