-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path25.error_handling.py
More file actions
66 lines (48 loc) · 1.15 KB
/
25.error_handling.py
File metadata and controls
66 lines (48 loc) · 1.15 KB
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
63
64
'''
Error Handling concept:
Error handling me 4 block of area use kiya jata hai:
1. try: code ko yaha par check kiya jata hai
2. except: code agar sahi hai then yaha par aayega
3. finally: at last sub close karne ke liye
4. else: last message show karane ke liye
Raise keywork ka use:
1. raise keywork ka use single line error handle ke liye kiya jata hai.
Multiple errors:
1. syntax error
2. type error
3. intentation error
4. ModuleNotFoundError
'''
# try and except
# try:
# print(x)
# except NameError:
# print('\nX not defined')
# except:
# print('\nUnexpected error')
# try except with else
# x = 10
# try:
# print(x)
# except :
# print('\nX not defined')
# except:
# print('\nUnexpected error')
# else:
# print('No error found')
# finally:
# print('\nTHis is finally')
# try:
# myfun()
# except SyntaxError:
# print('\nSyntax error')
# num = 5
# if num < 6:
# raise Exception('Yaha par kewal 5 se less then values allowed hain.')
# name = 100
# if not type(name) is str:
# raise TypeError('Only stirng values allowed.')
try:
import myname
except ModuleNotFoundError:
print('\nModeule name is wrong.')