Skip to content

Commit ffa44f3

Browse files
committed
update readme.md
1 parent 48aa2f5 commit ffa44f3

File tree

12 files changed

+37
-11
lines changed

12 files changed

+37
-11
lines changed

mooc/readme.md

Lines changed: 0 additions & 2 deletions
This file was deleted.

mooc/examinations/week1/2.py renamed to mooc/week1_BasicSyntaxeElements/examination/2.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
print("{:.2f}".format(result))
4141
'''
4242

43-
#参考答案
44-
# s = input()
45-
# print("{:.2f}".format(eval(s)))
43+
参考答案
44+
s = input()
45+
print("{:.2f}".format(eval(s)))
4646

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
print("Hello World")
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# PythonDraw.py
2+
import turtle
3+
4+
# initialize pen settings
5+
turtle.setup(650, 350, 200, 200)
6+
turtle.ht()
7+
turtle.penup()
8+
turtle.fd(-250)
9+
turtle.pendown()
10+
11+
12+
# draw the snake's body
13+
turtle.pensize(25)
14+
turtle.pencolor("green")
15+
turtle.seth(-40)
16+
for i in range(4):
17+
turtle.circle(40, 80)
18+
turtle.circle(-40, 80)
19+
turtle.circle(40, 80/2)
20+
turtle.fd(40)
21+
turtle.circle(16, 180)
22+
turtle.fd(40 * 2/3)
23+
24+
# draw the snake's eye
25+
turtle.dot(8,"white")
26+
27+
turtle.done()
File renamed without changes.

readme.assets/scraping.jpg

-69.8 KB
Loading

readme.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88

99
### crawler
1010

11-
学习**[莫烦PYTHON-Python3爬虫基础](https://morvanzhou.github.io/tutorials/data-manipulation/scraping/)**课程中的练习代码
11+
学习 **[莫烦PYTHON-Python3爬虫基础](https://morvanzhou.github.io/tutorials/data-manipulation/scraping/)** 课程中的练习代码
1212

13-
![莫凡Python](readme.assets/scraping.jpg)
13+
[![莫凡Python](readme.assets/scraping.jpg)](https://morvanzhou.github.io/tutorials/data-manipulation/scraping/)
1414

1515
### csp
1616

@@ -36,7 +36,7 @@
3636

3737
记录平常课后习题和测验的代码:
3838

39-
- `examinations` 目录下为测验题代码
39+
- `examination` 目录下为测验题代码
4040

4141
- `exercises` 目录下为练习题代码
4242

@@ -46,8 +46,8 @@
4646

4747
### python_book
4848

49-
![Python从入门到](readme.assets/1861.308.big.jpg)
49+
![Python从入门到](readme.assets/PythonCrashCourse.jpg)
5050

51-
记录学习**《Python编程:从入门到实践》**过程中的相关代码。
51+
记录学习 **《Python编程:从入门到实践》** 过程中的相关代码。
5252

53-
**强烈推荐这本书!** 图书链接: [中文版](https://www.ituring.com.cn/book/1861)|[英文版](https://www.amazon.cn/dp/B07J4521M3)
53+
**强烈推荐这本书!** 图书链接: [中文版](https://www.ituring.com.cn/book/1861)|[英文版](https://www.amazon.cn/dp/B07J4521M3)

0 commit comments

Comments
 (0)