Skip to content

Commit

Permalink
更新了文档中的bug
Browse files Browse the repository at this point in the history
  • Loading branch information
jackfrued committed May 20, 2019
1 parent e5af081 commit 76446dc
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
Binary file modified .DS_Store
Binary file not shown.
2 changes: 1 addition & 1 deletion Day01-15/Day11/文件和异常.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ if __name__ == '__main__':
main()
```

要将文本信息写入文件文件也非常简单,在使用`open`函数时指定好文件名并将文件模式设置为`'w'`即可。注意如果需要对文件内容进行追加式写入,应该将模式设置为`'a'`。如果要写入的文件不存在会自动创建文件而不是引发异常。下面的例子演示了如何将1-9999直接的素数分别写入三个文件中(1-99之间的素数保存在a.txt中,100-999之间的素数保存在b.txt中,1000-9999之间的素数保存在c.txt中)。
要将文本信息写入文件文件也非常简单,在使用`open`函数时指定好文件名并将文件模式设置为`'w'`即可。注意如果需要对文件内容进行追加式写入,应该将模式设置为`'a'`。如果要写入的文件不存在会自动创建文件而不是引发异常。下面的例子演示了如何将1-9999之间的素数分别写入三个文件中(1-99之间的素数保存在a.txt中,100-999之间的素数保存在b.txt中,1000-9999之间的素数保存在c.txt中)。

```Python
from math import sqrt
Expand Down
2 changes: 1 addition & 1 deletion Day01-15/Day15/图像和办公文档处理.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ Pillow中最为重要的是Image类,读取和处理图像都要通过这个类

```Python
>>> image = Image.open('./res/guido.png')
>>> image.rotata(180).show()
>>> image.rotate(180).show()
>>> image.transpose(Image.FLIP_LEFT_RIGHT).show()
```

Expand Down
2 changes: 1 addition & 1 deletion Day36-40/NoSQL入门.md
Original file line number Diff line number Diff line change
Expand Up @@ -489,7 +489,7 @@ connecting to: mongodb://172.18.61.250:27017/

使用MongoDB可以非常方便的配置数据复制,通过冗余数据来实现数据的高可用以及灾难恢复,也可以通过数据分片来应对数据量迅速增长的需求。关于MongoDB更多的操作可以查阅[官方文档](https://mongodb-documentation.readthedocs.io/en/latest/) ,同时推荐大家阅读Kristina Chodorow写的[《MongoDB权威指南》](http://www.ituring.com.cn/book/1172)

####在Python程序中操作MongoDB
#### 在Python程序中操作MongoDB

可以通过pip安装pymongo来实现对MongoDB的操作。

Expand Down

0 comments on commit 76446dc

Please sign in to comment.