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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
| # ZeroDivisionError
ZeroDivisionError Traceback (most recent call last)
<ipython-input-5-1a1c9c3dae95> in <module>
1 # ZeroDivisionError를 확인해봅시다.
----> 2 10 / 0
ZeroDivisionError: division by zero
# NameError : 사용하지 않았던 변수를 사용했을 때 발생
NameError Traceback (most recent call last)
<ipython-input-6-2516ed2be577> in <module>
1 # NameError를 확인해봅시다.
----> 2 print(hello)
NameError: name 'hello' is not defined # hello가 정의되지 않았다
# TypeError : 타입이 다르다
TypeError Traceback (most recent call last)
<ipython-input-7-a95aca245afd> in <module>
1 # TypeError를 확인해봅시다.
----> 2 1 + "5"
TypeError: unsupported operand type(s) for +: 'int' and 'str'
# +는 int와 str를 더할 수 없다
# 함수 호출과정의 TypeError
TypeError Traceback (most recent call last)
<ipython-input-8-47bdb1560f34> in <module>
1 # 함수 호출과정에서 TypeError도 발생하게 됩니다. 확인해봅시다.
----> 2 round()
TypeError: type str doesn't define __round__ method
# round method가 없다
# 필수 argument가 누락된 TypeError
### 자주발생하는 오류 중 하나
TypeError Traceback (most recent call last)
<ipython-input-10-621ab5efe8b1> in <module>
1 # 함수호출 과정에서 다양한 오류를 확인할 수 있습니다. : 필수 argument 누락
2 import random
----> 3 random.sample(range(1,46))
---> random.sample(range(1,46),6) 으로 수정
TypeError: sample() missing 1 required positional argument: 'k'
# k라는 argument하나가 빠졌다
# argument가 많은 경우 TypeError
TypeError Traceback (most recent call last)
<ipython-input-11-1d41a4b73a73> in <module>
1 # 함수호출 과정에서 다양한 오류를 확인할 수 있습니다. : argument 많은 경우
----> 2 random.choice(range(1,46),6)
---> random.choice(range(1,46))
TypeError: choice() takes 2 positional arguments but 3 were given
# 2개만 필요한데 3개가 입력이 되었다
#ValueError 1 : 자료형에 대한 type은 올바르지만, 값이 적절하지 않기 때문에 발생
ValueError Traceback (most recent call last)
<ipython-input-14-789240015774> in <module>
1 # ValueError를 확인해봅시다.
----> 2 int("3,5")
ValueError: invalid literal for int() with base 10: '3,5'
#
#ValueError 2 : 값이 적절하지 않는 경우 발생, 값이 없는데 찾으려고 하는 경우
TypeError Traceback (most recent call last)
<ipython-input-15-e21fa6a55961> in <module>
1 # ValueError를 확인해봅시다.
2 a = [1,2]
----> 3 a.index[3]
TypeError: 'builtin_function_or_method' object is not subscriptable
#IndexError
### 자주발생
IndexError Traceback (most recent call last)
<ipython-input-16-850c79f05d56> in <module>
1 # IndexError를 확인해봅시다.
2 a = [1,2,3]
----> 3 a[5]
IndexError: list index out of range
# list의 index의 범위를 벗어남
#KeyError
KeyError Traceback (most recent call last)
<ipython-input-18-d7a0c1e37db5> in <module>
1 # KeyError를 확인해봅시다.
2 my_dict = {'today':"2019-01-10"}
----> 3 my_dict["yesterday"]
KeyError: 'yesterday'
# 해당하는 키가 없다
#ModuleNotFoundError
ModuleNotFoundError Traceback (most recent call last)
<ipython-input-19-4b9a34fac305> in <module>
1 # ModuleNotFoundError를 확인해봅시다.
----> 2 import mymodule
ModuleNotFoundError: No module named 'mymodule'
# 해당하는 모듈이 없다
#ImportError : 해당하는 모듈을 찾았지만, 그 안에 해당하는게 없을 때 발생
ImportError Traceback (most recent call last)
<ipython-input-20-2df40018a06f> in <module>
1 # ImoprtError를 확인해봅시다.
----> 2 from bs4 import bbb
ImportError: cannot import name 'bbb'
#KeyboardInterrupt
KeyboardInterrupt Traceback (most recent call last)
<ipython-input-21-7223299ee06f> in <module>
1 # KeyboardInterrupt를 확인해봅시다.
2 while(True):
----> 3 continue
KeyboardInterrupt:
# 코드를 돌릴 때 ctrl + c (강제정지, interrupt를 주는것)
# 멈추고 해당 오류 발생
|