Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
python的介绍与web实战
Search
多火工作室
April 26, 2015
Education
0
110
python的介绍与web实战
多火工作室每周技术分享-python录制,框架涉及flask,django, 项目是一个图书馆查询系统。
多火工作室
April 26, 2015
Tweet
Share
More Decks by 多火工作室
See All by 多火工作室
github&git
luxiaojijan
1
230
Nodejs实现RESTful api
luxiaojijan
1
140
机器人餐厅
luxiaojijan
0
96
regular expressions
luxiaojijan
0
71
做全栈的java开发者
luxiaojijan
0
110
Other Decks in Education
See All in Education
SARA Annual Report 2024-25
sara2023
1
180
子どものためのプログラミング道場『CoderDojo』〜法人提携例〜 / Partnership with CoderDojo Japan
coderdojojapan
4
16k
OpenSourceSummitJapanを運営してみた話
kujiraitakahiro
0
700
Tutorial: Foundations of Blind Source Separation and Its Advances in Spatial Self-Supervised Learning
yoshipon
1
110
Course Review - Lecture 12 - Next Generation User Interfaces (4018166FNR)
signer
PRO
0
1.7k
2025年度春学期 統計学 第3回 クロス集計と感度・特異度,データの可視化 (2025. 4. 24)
akiraasano
PRO
0
130
新卒交流ワークショップ
pokotyamu
0
420
人になにかを教えるときに考えていること(2025-05版 / VRC-LT #18)
sksat
4
1k
演習問題
takenawa
0
5.4k
ThingLink
matleenalaakso
28
4.1k
Case Studies and Course Review - Lecture 12 - Information Visualisation (4019538FNR)
signer
PRO
1
2k
The Art of Note Taking
kanaya
1
130
Featured
See All Featured
Into the Great Unknown - MozCon
thekraken
39
1.9k
Testing 201, or: Great Expectations
jmmastey
42
7.5k
GitHub's CSS Performance
jonrohan
1031
460k
Put a Button on it: Removing Barriers to Going Fast.
kastner
60
3.9k
Intergalactic Javascript Robots from Outer Space
tanoku
271
27k
StorybookのUI Testing Handbookを読んだ
zakiyama
30
5.8k
Optimising Largest Contentful Paint
csswizardry
37
3.3k
The Art of Programming - Codeland 2020
erikaheidi
54
13k
Building a Scalable Design System with Sketch
lauravandoore
462
33k
Building Applications with DynamoDB
mza
95
6.5k
Designing for Performance
lara
609
69k
Building Better People: How to give real-time feedback that sticks.
wjessup
367
19k
Transcript
Python介绍与项⺫⽬目实战 By 张春荣
Python语⾔言简介 • Python语⾔言是属于脚本语⾔言。 • 其他语⾔言:源代码 -> 编译成可执⾏行程序 -> 运⾏行 程序
• 脚本语⾔言: 源代码 -> (解释器)直接”运⾏行"你的源 代码 • 举例:hello world!
Python能干什么? • Web 开发 (Django, Flask,Tornado) • 数据挖掘与科学计算 (matplotlib, pandas)
• 云计算 (openstack) • ⼩小⼯工具 (举例)
Python的前景
python web 开发 • 框架: Django, Flask, Tornado • Flask:
Python 项⺫⽬目分析 • 图书馆搜索功能 • http://127.0.0.1:8000/static/library.html • http://lib2.nuist.edu.cn/opac/search.php
None
怎么学习 • 书籍:Python 核⼼心编程 • 知道创宇研发技能表v2.2:http:// blog.knownsec.com/Knownsec_RD_Checklist/ v2.2.html • 做项⺫⽬目
(学习是为了解决问题)
• 举例 (知乎⽇日报 定期推送) • 知乎⽇日报api: https://github.com/izzyleung/ ZhihuDailyPurify/wiki/%E7%9F%A5%E4%B9%8E %E6%97%A5%E6%8A%A5-API- %E5%88%86%E6%9E%90
• http://daily.zhihu.com/ • github
End