Skip to content

Commit ba70310

Browse files
authored
Update 勘误表.md
1 parent 780ed73 commit ba70310

File tree

1 file changed

+17
-3
lines changed

1 file changed

+17
-3
lines changed

勘误表.md

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,26 @@
1010
tuple_2 = ('哈哈哈哈', '嘿嘿嘿嘿']
1111
```
1212

13-
应该改为
13+
应改为
1414

1515
```python
1616
tuple_2 = ('哈哈哈哈', '嘿嘿嘿嘿')
1717
```
1818

19+
## 55页
20+
21+
### 代码段第3行
22+
23+
```python
24+
source = requests.get('https://www.baidu.com').content.deocde()
25+
```
26+
27+
应改为
28+
29+
```python
30+
source = requests.get('https://www.baidu.com').content.decode()
31+
```
32+
1933
## 73页
2034

2135
### 第2行,
@@ -24,7 +38,7 @@ tuple_2 = ('哈哈哈哈', '嘿嘿嘿嘿')
2438
输入mport lxml
2539
```
2640

27-
应该为
41+
应改为
2842

2943
```python
3044
输入import lxml
@@ -36,7 +50,7 @@ tuple_2 = ('哈哈哈哈', '嘿嘿嘿嘿')
3650
import lxml html
3751
```
3852

39-
应该为
53+
应改为
4054

4155
```python
4256
from lxml import html

0 commit comments

Comments
 (0)