Skip to content

Commit

Permalink
Update-20180203
Browse files Browse the repository at this point in the history
  • Loading branch information
ShiChJ committed Feb 3, 2018
1 parent 34e4baa commit d50eaf4
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions Intro-Python/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,28 @@

![](https://i.imgur.com/GRZUlUd.gif)

## 7.导入BeautifulSoup4时总是显示错误

首先,确认自己安装了包。如果还未安装,请**在命令行**执行如下命令:

```cmd
pip install beautifulsoup4
```

然后**在python文件**中正确导入:

```python
from bs4 import BeautifulSoup
```

请务必注意简写和大小写。

## 8.做项目的时候,明明在Notebook中函数/变量在前面的代码中已经定义了(或者包已经导入了),为什么之后运行的代码要用到之前定义的函数/变量/包还是会提示“Not defined”错误?

很多同学在上次项目没做完,这次重新进入项目的时候,直接从上次未完成的代码块开始写代码并运行,这是**错误的**。当你退出网页(或者刷新)后重新进入项目的时候,Notebook实际上是一片空白的(所有变量、函数、模块等都不存在),必须**从头到尾运行一遍你已完成的所有代码**,才能够继续。

这一点不仅是在线做项目时需要注意的,同样适用于本地Notebook的运行,请务必注意。

# 学习资源推荐

## 中文
Expand Down

0 comments on commit d50eaf4

Please sign in to comment.