-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtry_catch_finally_examples.py
62 lines (55 loc) · 1.21 KB
/
try_catch_finally_examples.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# -*- coding: utf-8 -*-
"""
Created on Sun Aug 8 00:40:22 2021
@author: mjach
"""
'''
example 1
'''
# with open('reading_myy_file.txt','r') as my_reading_file:
# read_file = my_reading_file.read()
# print(read_file)
'''
example 2
'''
# try:
# with open('reading_my_file.txt','r') as my_reading_file:
# read_file = my_reading_file.read()
# print(read_file)
# except:
# print('File not found error')
'''
example 3
'''
# try:
# with open('reading_myy_file.txt','r') as my_reading_file:
# read_file = my_reading_file.read()
# print(read_file)
# except FileNotFoundError as file_error:
# print(file_error)
'''
example 4
'''
# try:
# with open('reading_myy_file.txt','r') as my_reading_file:
# read_file = my_reading_file.read()
# print(read_file)
# except FileNotFoundError as file_error:
# print(file_error)
# finally:
# print('This part will run, no amtter what happen up.')
'''
we can use as many as except to catch the error also we can use else--
within else block we can use try catch block
'''
#try:
#some code
#except:
#some code
#else:
#try:
#some code
#except:
#some code
#finally:
#some code