There was an error while loading. Please reload this page.
1 parent 780ed73 commit ba70310Copy full SHA for ba70310
勘误表.md
@@ -10,12 +10,26 @@
10
tuple_2 = ('哈哈哈哈', '嘿嘿嘿嘿']
11
```
12
13
-应该改为:
+应改为:
14
15
```python
16
tuple_2 = ('哈哈哈哈', '嘿嘿嘿嘿')
17
18
19
+## 55页
20
+
21
+### 代码段第3行
22
23
+```python
24
+source = requests.get('https://www.baidu.com').content.deocde()
25
+```
26
27
+应改为
28
29
30
+source = requests.get('https://www.baidu.com').content.decode()
31
32
33
## 73页
34
35
### 第2行,
@@ -24,7 +38,7 @@ tuple_2 = ('哈哈哈哈', '嘿嘿嘿嘿')
38
输入mport lxml
39
40
-应该为
41
42
43
44
输入import lxml
@@ -36,7 +50,7 @@ tuple_2 = ('哈哈哈哈', '嘿嘿嘿嘿')
36
50
import lxml html
37
51
52
53
54
55
56
from lxml import html
0 commit comments