Skip to content

Commit

Permalink
更正了文档中的部分bug
Browse files Browse the repository at this point in the history
  • Loading branch information
jackfrued committed Jun 19, 2019
1 parent 1cdc87b commit 9203ffe
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Day01-15/07.字符串和常用数据结构.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,8 @@ if __name__ == '__main__':
```Python
def main():
fruits = ['grape', 'apple', 'strawberry', 'waxberry']
fruits += ['pitaya', 'pear', 'mango']
# 循环遍历列表元素
fruits += ['pitaya', 'pear', 'mango']
# 循环遍历列表元素
for fruit in fruits:
print(fruit.title(), end=' ')
print()
Expand Down
3 changes: 3 additions & 0 deletions Day01-15/08.面向对象编程基础.md
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,9 @@ if __name__ == "__main__":
#### 练习1:定义一个类描述数字时钟

```Python
from time import sleep


class Clock(object):
"""数字时钟"""

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -570,7 +570,7 @@
python manage.py inspectdb > app/models.py
```

#### 第94天:[网络API接口设计](./Day91-100/94.网络API接口设计)
#### 第94天:[网络API接口设计](./Day91-100/94.网络API接口设计.md)

#### 第95天:[使用Django开发项目](./Day91-100/95.使用Django开发项目.md)

Expand Down

0 comments on commit 9203ffe

Please sign in to comment.