Skip to content

Commit 48aa2f5

Browse files
committed
add readme.md
1 parent 71c9344 commit 48aa2f5

File tree

15 files changed

+59
-13
lines changed

15 files changed

+59
-13
lines changed
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

uooc/examinations/week1/2.py renamed to mooc/examinations/week1/2.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,13 @@
3434
ln = float(eval(temp[1].strip()))
3535
result = fn-ln
3636
else:
37+
fn = float(eval(temp[1].strip()))
38+
ln = float(eval(temp[2].strip()))
3739
result = -fn-ln
3840
print("{:.2f}".format(result))
3941
'''
4042

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

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

mooc/readme.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Python语言程序设计 (第11期)
2+
>

readme.assets/1861.308.big.jpg

22.8 KB
Loading

readme.assets/scraping.jpg

119 KB
Loading

readme.md

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
# Python-Study
2+
3+
本仓库旨在记录本人在进行python学习中的一些收获。希望同时也能帮到其他人。
4+
5+
也可以将本仓库看成Python学习资源推荐仓库。:)
6+
7+
## 目录结构
8+
9+
### crawler
10+
11+
学习**[莫烦PYTHON-Python3爬虫基础](https://morvanzhou.github.io/tutorials/data-manipulation/scraping/)**课程中的练习代码
12+
13+
![莫凡Python](readme.assets/scraping.jpg)
14+
15+
### csp
16+
17+
> **CCF CSP认证(**CCF计算机软件能力认证 Certified Software Professional****
18+
>
19+
> 中国计算机学会(CCF)联合华为、360、滴滴等十余家知名IT企业以及清华、北航、国防科大等15所著名高校于2014年推出CCF CSP(计算机软件能力)认证标准,用于评价业界人士的计算机软件能力。
20+
>
21+
> 截至2019年3月,CCF CSP认证在全国57个城市的126所院校设立了认证点,每年举办三次。目前,CCF已成功举办16次CSP认证,来自全国400余所单位的98599人参加了认证。
22+
23+
`csp`目录记录已完成的[CSP](http://cspro.org/)往年试题的解题代码
24+
25+
### just_for_fun
26+
27+
> "实践出真知"
28+
29+
无聊写的一些小代码。有啥新奇的小想法,不要错过,尝试着去实现。
30+
31+
### mooc
32+
33+
>国家精品在线开放课"Python语言程序设计"(中国大学MOOC平台)对应的实践课程,第11次开课。
34+
35+
课程链接:[中国大学MOOC](https://www.icourse163.org/course/BIT-268001) [Python123](https://python123.io/index/courses/1521)
36+
37+
记录平常课后习题和测验的代码:
38+
39+
- `examinations` 目录下为测验题代码
40+
41+
- `exercises` 目录下为练习题代码
42+
43+
### old
44+
45+
不知道从哪里找来的自学视频
46+
47+
### python_book
48+
49+
![Python从入门到](readme.assets/1861.308.big.jpg)
50+
51+
记录学习**《Python编程:从入门到实践》**过程中的相关代码。
52+
53+
**强烈推荐这本书!** 图书链接: [中文版](https://www.ituring.com.cn/book/1861)|[英文版](https://www.amazon.cn/dp/B07J4521M3)

uooc/readme.md

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

0 commit comments

Comments
 (0)