forked from qiyeboy/SpiderBook
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
qiyeboy
committed
Jun 20, 2017
1 parent
3606810
commit 0813351
Showing
3 changed files
with
11 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#### 一. 1.4.4.py中代码29行出现问题,对应书籍29页 | ||
原因: i 没有使用str强转类型 | ||
<br> | ||
修改如下: | ||
```python | ||
for url in ["ImageUrl_"+str(i) for i in range(10)]: | ||
``` | ||
感谢@jsqlzy | ||
|