更正了文档中的部分bug

pull/208/head
jackfrued 2019-06-20 00:35:18 +08:00
parent 1cdc87b397
commit 9203ffe3db
3 changed files with 6 additions and 3 deletions

View File

@ -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()

View File

@ -131,6 +131,9 @@ if __name__ == "__main__":
#### 练习1定义一个类描述数字时钟
```Python
from time import sleep
class Clock(object):
"""数字时钟"""

View File

@ -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)