Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Python-100-Days
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
huangkq
Python-100-Days
Commits
9203ffe3
Commit
9203ffe3
authored
Jun 19, 2019
by
jackfrued
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
更正了文档中的部分bug
parent
1cdc87b3
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
3 deletions
+6
-3
07.字符串和常用数据结构.md
Day01-15/07.字符串和常用数据结构.md
+2
-2
08.面向对象编程基础.md
Day01-15/08.面向对象编程基础.md
+3
-0
README.md
README.md
+1
-1
No files found.
Day01-15/07.字符串和常用数据结构.md
View file @
9203ffe3
...
...
@@ -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()
...
...
Day01-15/08.面向对象编程基础.md
View file @
9203ffe3
...
...
@@ -131,6 +131,9 @@ if __name__ == "__main__":
#### 练习1:定义一个类描述数字时钟
```
Python
from time import sleep
class Clock(object):
"""数字时钟"""
...
...
README.md
View file @
9203ffe3
...
...
@@ -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)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment