├── .gitignore
├── Day01-15
├── 01.初识Python.md
├── 02.语言元素.md
├── 03.分支结构.md
├── 04.循环结构.md
├── 05.构造程序逻辑.md
├── 06.函数和模块的使用.md
├── 07.字符串和常用数据结构.md
├── 08.面向对象编程基础.md
├── 09.面向对象进阶.md
├── 10.图形用户界面和游戏开发.md
├── 11.文件和异常.md
├── 12.字符串和正则表达式.md
├── 13.进程和线程.md
├── 14.网络编程入门和网络应用开发.md
├── 15.图像和办公文档处理.md
├── code
│ ├── Day01
│ │ ├── flag.py
│ │ ├── hello.py
│ │ └── peppa_pig.py
│ ├── Day02
│ │ ├── centigrade.py
│ │ ├── circle.py
│ │ ├── leap.py
│ │ ├── operator.py
│ │ ├── strings.py
│ │ ├── variable1.py
│ │ ├── variable2.py
│ │ ├── variable3.py
│ │ ├── variable4.py
│ │ └── variable5.py
│ ├── Day03
│ │ ├── conversion.py
│ │ ├── grade.py
│ │ ├── piecewise.py
│ │ ├── rolldice.py
│ │ ├── tax.py
│ │ ├── triangle.py
│ │ └── verify.py
│ ├── Day04
│ │ ├── for1.py
│ │ ├── for2.py
│ │ ├── for3.py
│ │ ├── for4.py
│ │ ├── for5.py
│ │ ├── for6.py
│ │ ├── while1.py
│ │ └── while2.py
│ ├── Day05
│ │ ├── chicken.py
│ │ ├── craps.py
│ │ ├── fibonacci.py
│ │ ├── guess.py
│ │ ├── lily.py
│ │ ├── palindrome.py
│ │ ├── perfect.py
│ │ ├── prime.py
│ │ └── table.py
│ ├── Day06
│ │ ├── function1.py
│ │ ├── function2.py
│ │ ├── function3.py
│ │ ├── function4.py
│ │ ├── function5.py
│ │ └── function6.py
│ ├── Day07
│ │ ├── avgscore.py
│ │ ├── dict1.py
│ │ ├── dict2.py
│ │ ├── fibonacci.py
│ │ ├── findmax.py
│ │ ├── list1.py
│ │ ├── list2.py
│ │ ├── list3.py
│ │ ├── lottery.py
│ │ ├── marquee.py
│ │ ├── scoretable.py
│ │ ├── set1.py
│ │ ├── set2.py
│ │ ├── tic-tac-toe.py
│ │ ├── tuple.py
│ │ └── yanghui.py
│ ├── Day08
│ │ ├── access.py
│ │ ├── circle.py
│ │ ├── clock.py
│ │ ├── guess.py
│ │ ├── hack.py
│ │ ├── rect.py
│ │ └── student.py
│ ├── Day09
│ │ ├── association.py
│ │ ├── car1.py
│ │ ├── car2.py
│ │ ├── clock.py
│ │ ├── dependency.py
│ │ ├── diamond.py
│ │ ├── employee.py
│ │ ├── multi.py
│ │ ├── pet.py
│ │ ├── rational.py
│ │ ├── shape.py
│ │ └── triangle.py
│ ├── Day10
│ │ ├── ball.py
│ │ ├── gui1.py
│ │ ├── gui2.py
│ │ ├── gui3.py
│ │ ├── renju.py
│ │ ├── snake.py
│ │ └── turtle1.py
│ ├── Day11
│ │ ├── csv1.py
│ │ ├── csv2.py
│ │ ├── ex1.py
│ │ ├── ex2.py
│ │ ├── ex3.py
│ │ ├── ex4.py
│ │ ├── example.csv
│ │ ├── file1.py
│ │ ├── file2.py
│ │ ├── file3.py
│ │ ├── file4.py
│ │ ├── json1.py
│ │ ├── json2.py
│ │ ├── mm.jpg
│ │ ├── pi_million_digits.txt
│ │ ├── teacher.csv
│ │ └── 致橡树.txt
│ ├── Day12
│ │ ├── str1.py
│ │ ├── str2.py
│ │ ├── test3.py
│ │ ├── test4.py
│ │ └── test5.py
│ ├── Day13
│ │ ├── asyncio1.py
│ │ ├── asyncio2.py
│ │ ├── asyncio3.py
│ │ ├── coroutine1.py
│ │ ├── coroutine2.py
│ │ ├── generator1.py
│ │ ├── generator2.py
│ │ ├── multiprocess1.py
│ │ ├── multiprocess2.py
│ │ ├── multiprocess3.py
│ │ ├── multiprocess4.py
│ │ ├── multithread1.py
│ │ ├── multithread2.py
│ │ ├── multithread3.py
│ │ ├── multithread4.py
│ │ ├── multithread5.py
│ │ ├── multithread6.py
│ │ ├── singlethread1.py
│ │ ├── singlethread2.py
│ │ ├── test2.py
│ │ └── test3.py
│ ├── Day14
│ │ ├── chatclient.py
│ │ ├── chatserver.py
│ │ ├── fileclient.py
│ │ ├── fileserver.py
│ │ ├── guido.jpg
│ │ ├── mmdownloader.py
│ │ ├── socket1.py
│ │ ├── socket2.py
│ │ ├── socket3.py
│ │ ├── socket4.py
│ │ ├── socket5.py
│ │ ├── timeclient.py
│ │ └── timeserver.py
│ └── Day15
│ │ ├── excel1.py
│ │ ├── excel2.py
│ │ ├── pdf1.py
│ │ ├── pdf2.py
│ │ ├── pillow1.py
│ │ ├── res
│ │ ├── Docker入门教程.pdf
│ │ ├── guido.jpg
│ │ ├── luohao.png
│ │ ├── 学生明细表.xlsx
│ │ └── 用函数还是用复杂的表达式.docx
│ │ ├── word1.py
│ │ └── word2.py
└── res
│ ├── TCP-IP-model.png
│ ├── after-browser.jpg
│ ├── arpanet.png
│ ├── ball-game.png
│ ├── ball.png
│ ├── before-browser.jpg
│ ├── browers.jpg
│ ├── browser-market-place.jpeg
│ ├── fibonacci-blocks.png
│ ├── file-open-mode.png
│ ├── formula_1.png
│ ├── formula_2.png
│ ├── formula_3.png
│ ├── formula_4.png
│ ├── formula_5.png
│ ├── formula_6.png
│ ├── formula_7.png
│ ├── formula_8.png
│ ├── how-data-is-processed.jpg
│ ├── image-crop.png
│ ├── image-filter.png
│ ├── image-paste.png
│ ├── image-putpixel.png
│ ├── image-rotate.png
│ ├── image-show.png
│ ├── image-thumbnail.png
│ ├── image-transpose.png
│ ├── ipython-timeit.png
│ ├── macos-monitor.png
│ ├── object-feature.png
│ ├── oop-zhihu.png
│ ├── osi_rm.gif
│ ├── osimodel.png
│ ├── python-idle.png
│ ├── python-ipython.png
│ ├── python-jupyter-1.png
│ ├── python-jupyter-2.png
│ ├── python-pycharm.png
│ ├── python-set.png
│ ├── python-sublime.png
│ ├── tcpipprotocols.png
│ ├── tel-start-number.png
│ ├── telnet.png
│ ├── uml-components.png
│ └── uml-example.png
├── Day16-20
├── 16-20.Python语言进阶.md
├── code
│ ├── example01.py
│ ├── example02.py
│ ├── example03.py
│ ├── example04.py
│ ├── example05.py
│ ├── example06.py
│ ├── example07.py
│ ├── example08.py
│ ├── example09.py
│ ├── example10.py
│ ├── example11.py
│ ├── example12.py
│ ├── example13.py
│ ├── example14.py
│ ├── example15.py
│ ├── example16.py
│ ├── example17.py
│ ├── example18.py
│ ├── example19.py
│ ├── example20.py
│ ├── example21.py
│ ├── example22.py
│ ├── example23.py
│ ├── example24.py
│ ├── test_example01.py
│ └── test_example02.py
└── res
│ ├── algorithm_complexity_1.png
│ └── algorithm_complexity_2.png
├── Day21-30
├── 21-30.Web前端概述.md
├── code
│ ├── list_by_javascript.html
│ ├── list_by_jquery.html
│ ├── list_by_vue.html
│ ├── new
│ │ ├── vue
│ │ │ └── vue.demo.html
│ │ └── web1901
│ │ │ ├── audio
│ │ │ ├── test-audio.mp3
│ │ │ └── test-audio.ogg
│ │ │ ├── css
│ │ │ └── style.css
│ │ │ ├── css_practice_1.html
│ │ │ ├── css_practice_1.result.html
│ │ │ ├── css_practice_2.html
│ │ │ ├── css_practice_2.result.html
│ │ │ ├── css_practice_3.html
│ │ │ ├── css_practice_3.result.html
│ │ │ ├── example_of_anchor.html
│ │ │ ├── example_of_audio_video.html
│ │ │ ├── example_of_bom_1.html
│ │ │ ├── example_of_bootstrap.html
│ │ │ ├── example_of_css_1.html
│ │ │ ├── example_of_css_2.html
│ │ │ ├── example_of_css_3.html
│ │ │ ├── example_of_css_4.html
│ │ │ ├── example_of_css_5.html
│ │ │ ├── example_of_form.html
│ │ │ ├── example_of_iframe.html
│ │ │ ├── example_of_jquery_1.html
│ │ │ ├── example_of_jquery_2.html
│ │ │ ├── example_of_jquery_3.html
│ │ │ ├── example_of_jquery_4.html
│ │ │ ├── example_of_jquery_5.html
│ │ │ ├── example_of_js_1.html
│ │ │ ├── example_of_js_2.html
│ │ │ ├── example_of_js_3.html
│ │ │ ├── example_of_js_4.html
│ │ │ ├── example_of_js_5.html
│ │ │ ├── example_of_js_6.html
│ │ │ ├── example_of_js_7.html
│ │ │ ├── example_of_layout.html
│ │ │ ├── example_of_table.html
│ │ │ ├── example_of_vue_element.html
│ │ │ ├── fonts
│ │ │ ├── chunkfive.ttf
│ │ │ └── quicksand.ttf
│ │ │ ├── images
│ │ │ ├── a1.jpg
│ │ │ ├── a2.jpg
│ │ │ ├── a3.jpg
│ │ │ ├── add.gif
│ │ │ ├── backdrop.gif
│ │ │ ├── bird.gif
│ │ │ ├── bok-choi.jpg
│ │ │ ├── button-sprite.jpg
│ │ │ ├── buttons.jpg
│ │ │ ├── chocolate-islands.jpg
│ │ │ ├── clavinet.jpg
│ │ │ ├── dark-wood.jpg
│ │ │ ├── dots.gif
│ │ │ ├── email.png
│ │ │ ├── header.gif
│ │ │ ├── header.jpg
│ │ │ ├── icon-plus.png
│ │ │ ├── icon.png
│ │ │ ├── icons.jpg
│ │ │ ├── keys.jpg
│ │ │ ├── lemon-posset.jpg
│ │ │ ├── logo-1.gif
│ │ │ ├── logo-2.gif
│ │ │ ├── logo-3.gif
│ │ │ ├── logo.gif
│ │ │ ├── magnolia-large.jpg
│ │ │ ├── magnolia-medium.jpg
│ │ │ ├── magnolia-small.jpg
│ │ │ ├── otters.jpg
│ │ │ ├── pattern.gif
│ │ │ ├── picture-1.jpg
│ │ │ ├── picture-2.jpg
│ │ │ ├── picture-3.jpg
│ │ │ ├── print-01.jpg
│ │ │ ├── print-02.jpg
│ │ │ ├── print-03.jpg
│ │ │ ├── print-04.jpg
│ │ │ ├── print-05.jpg
│ │ │ ├── print-06.jpg
│ │ │ ├── puppy.jpg
│ │ │ ├── python-logo.png
│ │ │ ├── quokka.jpg
│ │ │ ├── rhodes.jpg
│ │ │ ├── roasted-brussel-sprouts.jpg
│ │ │ ├── shadow.png
│ │ │ ├── slide-1.jpg
│ │ │ ├── slide-2.jpg
│ │ │ ├── slide-3.jpg
│ │ │ ├── slide-4.jpg
│ │ │ ├── star.png
│ │ │ ├── subscribe.jpg
│ │ │ ├── teriyaki.jpg
│ │ │ ├── thumb-1.jpg
│ │ │ ├── thumb-2.jpg
│ │ │ ├── thumb-3.jpg
│ │ │ ├── tim.png
│ │ │ ├── title.gif
│ │ │ ├── tulip.gif
│ │ │ ├── twitter.png
│ │ │ ├── web.png
│ │ │ ├── wurlitzer.jpg
│ │ │ └── zucchini-cake.jpg
│ │ │ ├── index.html
│ │ │ ├── js
│ │ │ ├── hello.js
│ │ │ └── jquery.min.js
│ │ │ ├── js_practice_1.html
│ │ │ ├── js_practice_2.html
│ │ │ ├── js_practice_3.html
│ │ │ ├── js_practice_4.html
│ │ │ ├── js_practice_5.html
│ │ │ ├── js_practice_6.html
│ │ │ ├── js_practice_7.html
│ │ │ ├── problem_of_float.html
│ │ │ ├── shopping_cart.html
│ │ │ └── video
│ │ │ ├── puppy.flv
│ │ │ ├── puppy.mp4
│ │ │ └── puppy.webm
│ ├── old
│ │ ├── html+css
│ │ │ ├── classical_layout.html
│ │ │ ├── example.html
│ │ │ ├── form_and_table.html
│ │ │ └── qq_link.html
│ │ └── javascript
│ │ │ ├── example01.html
│ │ │ ├── example02.html
│ │ │ ├── example03.html
│ │ │ ├── example04.html
│ │ │ ├── example05.html
│ │ │ ├── example06.html
│ │ │ ├── example07.html
│ │ │ ├── example08.html
│ │ │ ├── example09.html
│ │ │ ├── example10.html
│ │ │ ├── example11.html
│ │ │ ├── example12.html
│ │ │ ├── homework01.html
│ │ │ ├── homework02.html
│ │ │ ├── homework03.html
│ │ │ ├── homework04.html
│ │ │ ├── homework05.html
│ │ │ ├── homework06.html
│ │ │ ├── homework07.html
│ │ │ ├── homework08.html
│ │ │ ├── img
│ │ │ ├── a1.jpg
│ │ │ ├── a2.jpg
│ │ │ ├── a3.jpg
│ │ │ ├── picture-1.jpg
│ │ │ ├── picture-2.jpg
│ │ │ ├── picture-3.jpg
│ │ │ ├── slide-1.jpg
│ │ │ ├── slide-2.jpg
│ │ │ ├── slide-3.jpg
│ │ │ ├── slide-4.jpg
│ │ │ ├── thumb-1.jpg
│ │ │ ├── thumb-2.jpg
│ │ │ └── thumb-3.jpg
│ │ │ ├── index.html
│ │ │ ├── js
│ │ │ ├── jquery.min.js
│ │ │ └── mylib.js
│ │ │ ├── message.json
│ │ │ └── message.xml
│ └── 垃圾分类查询
│ │ ├── images
│ │ ├── harmful-waste.png
│ │ ├── kitchen-waste.png
│ │ ├── other-waste.png
│ │ └── recyclable.png
│ │ ├── index-2.html
│ │ └── index.html
└── res
│ ├── baidu_echarts.png
│ ├── bootstrap-layoutit.png
│ ├── 字体样式.png
│ ├── 字符实体.png
│ ├── 客户端对字体文件的支持.png
│ ├── 尺寸单位.png
│ ├── 属性选择器.png
│ ├── 常用选择器.png
│ ├── 开始标签.png
│ ├── 标签属性.png
│ ├── 样式属性.png
│ ├── 盒子模型.png
│ ├── 相对路径.png
│ ├── 经典布局-1.png
│ ├── 经典布局-2.png
│ ├── 结束标签.png
│ ├── 网站地图.png
│ ├── 衬线字体+非衬线字体+等宽字体.png
│ └── 选择器语法.png
├── Day31-35
├── 31-35.玩转Linux操作系统.md
├── code
│ ├── dayofyear.py
│ ├── guess.py
│ ├── homework01.py
│ ├── josephu.py
│ └── mycal.py
└── res
│ ├── andrew.jpg
│ ├── dmr.png
│ ├── file-mode.png
│ ├── history-of-unix.png
│ ├── ibm-col80-punched-card.png
│ ├── ken-and-dennis-pdp-11.png
│ ├── ken_old.png
│ ├── ken_young.jpg
│ ├── linus.png
│ ├── linux-network-config.png
│ ├── pdp-11.jpg
│ ├── pdp-7.png
│ ├── vim-diff.png
│ ├── vim-macro.png
│ └── vim-multi-window.png
├── Day36-40
├── 36.关系型数据库和MySQL概述.md
├── 37.SQL详解.md
├── 38.深入MySQL.md
├── 39.Python程序接入MySQL数据库.md
├── 40.大数据平台和HiveSQL.md
├── NoSQL数据库入门.md
├── code
│ ├── HRS_create_and_init.sql
│ ├── SRS_create_and_init.sql
│ ├── app_store.sql
│ ├── contact
│ │ └── main.py
│ ├── dist.sql
│ ├── hrs_with_answer.sql
│ ├── library_create_and_init.sql
│ ├── message
│ │ └── 内部短消息系统.txt
│ ├── mooc_create_and_init.sql
│ ├── order.sql
│ ├── order_sys.sql
│ ├── sharebike_create_and_init.sql
│ ├── srs_exercise_origin.sql
│ └── stock.sql
└── res
│ ├── conceptual_model.png
│ ├── er_diagram.png
│ ├── redis-aof.png
│ ├── redis-bind-and-port.png
│ ├── redis-data-types.png
│ ├── redis-databases.png
│ ├── redis-hash.png
│ ├── redis-list.png
│ ├── redis-rdb-1.png
│ ├── redis-rdb-3.png
│ ├── redis-replication.png
│ ├── redis-security.png
│ ├── redis-set.png
│ ├── redis-slow-logs.png
│ ├── redis-string.png
│ └── redis-zset.png
├── Day41-55
├── 41.Django快速上手.md
├── 42.深入模型.md
├── 43.静态资源和Ajax请求.md
├── 44.Cookie和Session.md
├── 45.制作报表.md
├── 46.日志和调试工具栏.md
├── 47.中间件的应用.md
├── 48.前后端分离开发入门.md
├── 49.RESTful架构和DRF入门.md
├── 50.RESTful架构和DRF进阶.md
├── 51.使用缓存.md
├── 52.接入三方平台.md
├── 53.异步任务和定时任务.md
├── 54.单元测试.md
├── 55.项目上线.md
├── code
│ └── hellodjango
│ │ ├── first
│ │ ├── __init__.py
│ │ ├── admin.py
│ │ ├── apps.py
│ │ ├── migrations
│ │ │ └── __init__.py
│ │ ├── models.py
│ │ ├── tests.py
│ │ └── views.py
│ │ ├── hellodjango
│ │ ├── __init__.py
│ │ ├── settings.py
│ │ ├── urls.py
│ │ └── wsgi.py
│ │ ├── manage.py
│ │ └── templates
│ │ └── index.html
└── res
│ ├── CSRF.png
│ ├── Django-Flowchart.png
│ ├── Django-MTV.png
│ ├── asynchronous-web-request.png
│ ├── captcha.png
│ ├── cookie_xstorage_indexeddb.png
│ ├── csrf-simple.png
│ ├── debug-toolbar.png
│ ├── django-admin-add-model.png
│ ├── django-admin-apps.png
│ ├── django-admin-delete-update-model.png
│ ├── django-admin-login.png
│ ├── django-admin-models.png
│ ├── django-admin-view-models-subject.png
│ ├── django-admin-view-models-teacher.png
│ ├── django-admin-view-models.png
│ ├── django-index-1.png
│ ├── django-index-2.png
│ ├── django-middleware.png
│ ├── drf-app.png
│ ├── echarts_bar_graph.png
│ ├── http-request.png
│ ├── http-response.png
│ ├── json-web-token.png
│ ├── luosimao-pay-onlinebuy.png
│ ├── luosimao-sms-apikey.png
│ ├── luosimao-sms-signature.png
│ ├── luosimao-sms-whitelist.png
│ ├── mvc.png
│ ├── pycharm-django-project.png
│ ├── pycharm-django-server.png
│ ├── pycharm-django-static.png
│ ├── pycharm-django-template.png
│ ├── pycharm-django-virtual-environment.png
│ ├── pycharm-install-django.png
│ ├── pycharm-python-manage.png
│ ├── pycharm-vote-project.png
│ ├── qiniu-document-python.png
│ ├── qiniu-file-management.png
│ ├── qiniu-manage-console.png
│ ├── qiniu-secretkey-management.png
│ ├── qiniu-storage-create.png
│ ├── qiniu-storage-service.png
│ ├── redis-cache-service.png
│ ├── sessionid_from_cookie.png
│ ├── synchronous-web-request.png
│ └── web-application.png
├── Day56-60
├── 56-60.用FastAPI开发数据接口.md
└── res
│ ├── QQ20201127-180608@2x.png
│ ├── QQ20201127-180630@2x.png
│ ├── QQ20201127-180711@2x.png
│ ├── QQ20201127-180820@2x.png
│ ├── QQ20201127-180844@2x.png
│ ├── first-demo-docs.png
│ └── run-first-demo.png
├── Day61-65
├── 61.网络数据采集概述.md
├── 62.用Python获取网络资源-1.md
├── 62.用Python解析HTML页面-2.md
├── 63.Python中的并发编程-1.md
├── 63.Python中的并发编程-2.md
├── 63.Python中的并发编程-3.md
├── 63.并发编程在爬虫中的应用.md
├── 64.使用Selenium抓取网页动态内容.md
├── 65.爬虫框架Scrapy简介.md
└── res
│ ├── api-image360.png
│ ├── baidu-search-taobao.png
│ ├── chrome-developer-tools.png
│ ├── crawler-workflow.png
│ ├── douban-xpath.png
│ ├── http-request.png
│ ├── http-response.png
│ ├── image360-website.png
│ └── scrapy-architecture.png
├── Day66-80
├── 66.数据分析概述.md
├── 67.环境准备.md
├── 68.NumPy的应用-1.md
├── 69.NumPy的应用-2.md
├── 70.NumPy的应用-3.md
├── 71.NumPy的应用-4.md
├── 72.深入浅出pandas-1.md
├── 73.深入浅出pandas-2.md
├── 74.深入浅出pandas-3.md
├── 75.深入浅出pandas-4.md
├── 76.深入浅出pandas-5.md
├── 77.深入浅出pandas-6.md
├── 78.数据可视化-1.md
├── 79.数据可视化-2.md
├── 80.数据可视化-3.md
├── code
│ └── data
│ │ ├── 2018年北京积分落户数据.csv
│ │ ├── 2020年销售数据.xlsx
│ │ ├── 2022年股票数据.xlsx
│ │ ├── 2023年北京积分落户数据.csv
│ │ ├── boston_house_price.csv
│ │ └── 某招聘网站招聘数据.csv
└── res
│ ├── 20220501172802.png
│ ├── 20220501173034.png
│ ├── 20220501173344.png
│ ├── 20220501173446.png
│ ├── 20220501173557.png
│ ├── 20220501173645.png
│ ├── 20220502094128.png
│ ├── 20220502095949.png
│ ├── 20220502115005.png
│ ├── 20220502115531.png
│ ├── 20220502120236.png
│ ├── 20220502120749.png
│ ├── 20220502121226.png
│ ├── 20220502121656.png
│ ├── 20220502122106.png
│ ├── 20220502122144.png
│ ├── 3d_surface_chart.png
│ ├── 3d_surface_chart_qt.png
│ ├── 3sigma.png
│ ├── 3sigma_rule.jpg
│ ├── JupyterLab_1.png
│ ├── JupyterLab_2.png
│ ├── JupyterLab_3.png
│ ├── JupyterLab_4.png
│ ├── JupyterLab_5.png
│ ├── Parallelogramme.jpeg
│ ├── anaconda_navigator.png
│ ├── baidu_double_MA.png
│ ├── baidu_stock.png
│ ├── baidu_stock_asfreq.png
│ ├── baidu_stock_asfreq_ffill.png
│ ├── baidu_stock_ma5.png
│ ├── baidu_stock_resample.png
│ ├── baidu_stock_resample_agg.png
│ ├── baidu_stock_tz_convert.png
│ ├── baidu_stock_tz_localize.png
│ ├── boston_house_price.png
│ ├── boston_house_price_features.png
│ ├── boston_person_correlation.png
│ ├── boston_spearman_correlation.png
│ ├── box_plot_1.png
│ ├── box_plot_2.png
│ ├── broadcast-1.png
│ ├── broadcast-2.png
│ ├── broadcast-3.png
│ ├── bubble_chart.png
│ ├── choose_your_chart.png
│ ├── connection-style.png
│ ├── create_ndarray_1.png
│ ├── create_ndarray_2.png
│ ├── data_science.png
│ ├── dataframe_methods.png
│ ├── dataframe_operators_1.png
│ ├── dataframe_operators_2.png
│ ├── download-anaconda.png
│ ├── dtype.jpg
│ ├── function_overview_8_0.png
│ ├── guido_slice_1.png
│ ├── guido_slice_2.png
│ ├── guido_slice_3.png
│ ├── guido_slice_4.png
│ ├── guido_slice_5.png
│ ├── hist_count.png
│ ├── hist_cumulative.png
│ ├── in_out_regression_result.png
│ ├── in_out_scatter_plot.png
│ ├── linalg_functions_1.png
│ ├── linalg_functions_2.png
│ ├── linear_transformation.png
│ ├── load_data_functions_1.png
│ ├── load_data_functions_2.png
│ ├── matrix_multiply.png
│ ├── matrix_operation.png
│ ├── ndarray-dtype.png
│ ├── ndarray-index.png
│ ├── ndarray-slice.png
│ ├── ndarray_methods_1.png
│ ├── normal-distribution.png
│ ├── notebook-get-help.png
│ ├── notebook-magic-command.png
│ ├── notebook-search-namespace.png
│ ├── notebook-shortcut.png
│ ├── numpy_functions_1.png
│ ├── numpy_functions_2.png
│ ├── numpy_functions_3.png
│ ├── pivot_table_1.png
│ ├── pivot_table_2.png
│ ├── pyecharts_bar_chart.png
│ ├── pyecharts_map_chart.png
│ ├── pyecharts_pie_chart.png
│ ├── radar_chart.png
│ ├── rose_chart.png
│ ├── run-anaconda-navigator.png
│ ├── sales_bar_graph.png
│ ├── sales_pie_graph.png
│ ├── ser_bar_graph.png
│ ├── ser_pie_graph.png
│ ├── series_methods.png
│ ├── stacked_line_chart.png
│ ├── vector_1.png
│ └── vector_2.png
├── Day81-90
├── 81.人工智能和机器学习概述.md
├── 82.k最近邻分类.md
├── 83.决策树.md
├── 83.推荐系统实战-1.md
├── 84.贝叶斯分类.md
├── 85.支持向量机.md
├── 86.K-均值聚类.md
├── 87.回归分析.md
├── 88.深度学习入门.md
├── 89.PyTorch概述.md
├── 90.PyTorch实战.md
└── res
│ ├── dajiang_robomaster.png
│ ├── face_paying.png
│ ├── quickdraw.png
│ ├── scikit-learn-logo.png
│ ├── sweep_robot.jpg
│ └── xiaomi_ai_voice_box.png
├── Day91-100
├── 100.Python面试题实录.md
├── 91.团队项目开发的问题和解决方案.md
├── 92.Docker容器技术详解.md
├── 93.MySQL性能优化.md
├── 94.网络API接口设计.md
├── 95.使用Django开发商业项目.md
├── 96.软件测试和自动化测试.md
├── 97.电商网站技术要点剖析.md
├── 98.项目部署上线和性能调优.md
├── 99.面试中的公共问题.md
└── res
│ ├── 01.django_single_server.png
│ ├── 02.django_dedicated_db_server.png
│ ├── 03.django_dedicated_static_server.png
│ ├── 04.django_load_balance.png
│ ├── 05.django_massive_cluster.png
│ ├── Celery_RabitMQ.png
│ ├── Producer-Broker-Consumer-Arrangement.png
│ ├── algorithm_complexity_1.png
│ ├── algorithm_complexity_2.png
│ ├── alipay_web_developer.png
│ ├── aliyun-certificate.png
│ ├── aliyun-dnslist.png
│ ├── aliyun-domain.png
│ ├── aliyun-keeprecord.png
│ ├── aliyun-resolve-settings.png
│ ├── builtin-middlewares.png
│ ├── celery_architecture.png
│ ├── click-jacking.png
│ ├── company_architecture.png
│ ├── django-middleware.png
│ ├── django-mtv.png
│ ├── django_request_response_cycle.png
│ ├── docker_logo.png
│ ├── docker_vs_vm.png
│ ├── dockerhub-repo.png
│ ├── er-graph.png
│ ├── git-flow-detail.png
│ ├── git-flow.png
│ ├── git-logo.png
│ ├── git-rebase.png
│ ├── git-reset.png
│ ├── git_repository.png
│ ├── gitee-add-members.png
│ ├── gitee-create-project.png
│ ├── gitee-project-index.png
│ ├── gitee-pull-request.png
│ ├── gitlab-about.png
│ ├── gitlab-new-issue.png
│ ├── hadoop_ecosystem.png
│ ├── http-request.png
│ ├── http-response.png
│ ├── jenkins-create-admin.png
│ ├── jenkins-unlock.png
│ ├── jenkins_new_project.png
│ ├── mvc.png
│ ├── oauth2.png
│ ├── power-designer-pdm.png
│ ├── pylint.png
│ ├── python_jobs_chengdu.png
│ ├── python_salary_chengdu.png
│ ├── rbac-basic.png
│ ├── rbac-full.png
│ ├── requirements_by_xmind.png
│ ├── selenium_ide.png
│ ├── shopping-pdm.png
│ ├── the-daily-scrum-in-the-sprint-cycle.png
│ ├── uml-class-diagram.png
│ ├── uml-graph.png
│ ├── uml.png
│ ├── unlock-jenkins.png
│ ├── web-application.png
│ ├── zentao-index.png
│ └── zentao-login.png
├── README.md
├── res
├── ABF827024EA535099DC0E6A66A336C51.png
├── agile-scrum-sprint-cycle.png
├── company_architecture.png
├── donation1.png
├── donation2.png
├── donation3.png
├── donation4.png
├── donation5.png
├── donation6.png
├── donation7.png
├── donation8.png
├── hadoop_ecosystem.png
├── power-designer-pdm.png
├── pylint.png
├── python-built-in-functions.png
├── python-job-all.png
├── python-job-chengdu.png
├── python_jobs_chengdu.png
├── qrcode.JPG
├── rbac-basic.png
├── rbac-full.png
├── requirements_by_xmind.png
├── uml-class-diagram.png
└── zen-of-python.png
├── 公开课
├── 文档
│ ├── 年薪50W+的Python程序员如何写代码
│ │ ├── code
│ │ │ ├── Java
│ │ │ │ └── opencourse
│ │ │ │ │ ├── opencourse.iml
│ │ │ │ │ ├── out
│ │ │ │ │ └── production
│ │ │ │ │ │ └── opencourse
│ │ │ │ │ │ ├── META-INF
│ │ │ │ │ │ └── opencourse.kotlin_module
│ │ │ │ │ │ └── org
│ │ │ │ │ │ └── mobiletrain
│ │ │ │ │ │ ├── Example01.class
│ │ │ │ │ │ ├── Example02.class
│ │ │ │ │ │ ├── Example03.class
│ │ │ │ │ │ ├── Example04.class
│ │ │ │ │ │ ├── Example05$RequestHandler.class
│ │ │ │ │ │ └── Example05.class
│ │ │ │ │ └── src
│ │ │ │ │ └── org
│ │ │ │ │ └── mobiletrain
│ │ │ │ │ ├── Example01.java
│ │ │ │ │ ├── Example02.java
│ │ │ │ │ ├── Example03.java
│ │ │ │ │ ├── Example04.java
│ │ │ │ │ └── Example05.java
│ │ │ └── Python
│ │ │ │ ├── USvideos.csv
│ │ │ │ ├── opencourse
│ │ │ │ ├── part01
│ │ │ │ │ ├── example01.py
│ │ │ │ │ ├── example02.py
│ │ │ │ │ ├── example03.py
│ │ │ │ │ ├── example04.py
│ │ │ │ │ ├── example05.py
│ │ │ │ │ ├── example06.py
│ │ │ │ │ ├── example07.py
│ │ │ │ │ ├── example08.py
│ │ │ │ │ ├── example09.py
│ │ │ │ │ └── example10.py
│ │ │ │ ├── part02
│ │ │ │ │ ├── idiom01.py
│ │ │ │ │ ├── idiom02.py
│ │ │ │ │ ├── idiom03.py
│ │ │ │ │ ├── idiom04.py
│ │ │ │ │ ├── idiom05.py
│ │ │ │ │ └── idiom06.py
│ │ │ │ ├── part03
│ │ │ │ │ └── example.py
│ │ │ │ ├── part04
│ │ │ │ │ ├── example.py
│ │ │ │ │ └── example.py.lprof
│ │ │ │ └── requirements.txt
│ │ │ │ └── 使用Pandas做数据分析.ipynb
│ │ ├── res
│ │ │ ├── action.png
│ │ │ └── use-pandas-in-jupyter-notebook.png
│ │ └── 年薪50W+的Python程序员如何写代码.md
│ ├── 第04次公开课-好玩的Python
│ │ ├── code
│ │ │ ├── example01.py
│ │ │ └── resources
│ │ │ │ ├── chiling.jpg
│ │ │ │ └── frame.jpg
│ │ ├── res
│ │ │ └── requests.png
│ │ └── 好玩的Python.md
│ ├── 第05次公开课-算法入门系列1-周而复始
│ │ ├── code
│ │ │ ├── Python_Tricks_encrypted.pdf
│ │ │ ├── dictionary.txt
│ │ │ ├── example01.py
│ │ │ ├── example02.py
│ │ │ ├── example03.py
│ │ │ ├── example04.py
│ │ │ ├── example05.py
│ │ │ └── example06.py
│ │ ├── 算法入门系列1-周而复始.key
│ │ └── 算法入门系列1-周而复始.md
│ └── 第06次公开课-算法入门系列2-在水一方
│ │ ├── code
│ │ ├── example01.py
│ │ ├── example02.py
│ │ ├── example03.py
│ │ ├── example04.py
│ │ └── example05.py
│ │ ├── res
│ │ ├── droste.png
│ │ ├── eight_queen.png
│ │ ├── knight_tour.gif
│ │ └── maze.png
│ │ ├── 算法入门系列2 - 在水一方.md
│ │ └── 算法入门系列2-在水一方.key
└── 视频
│ └── 视频链接.txt
├── 更新日志.md
└── 番外篇
├── PEP8风格指南.md
├── Python之禅的最佳翻译.md
├── Python参考书籍.md
├── Python容器使用小技巧.md
├── Python数据分析师面试题.md
├── Python编程惯例.md
├── code
├── Test.java
├── Test01.java
├── Test02.java
├── Test03.java
├── test.py
├── test01.py
├── test02.py
└── test03.py
├── res
├── create-new-repo.png
├── dns-configuration.png
├── hexo-default-index.png
├── int-is-comparation.png
├── pycharm-activation.png
├── pycharm-create-launcher.png
├── pycharm-import-settings.png
├── pycharm-install-plugins.png
├── pycharm-installation.png
├── pycharm-project-wizard.png
├── pycharm-run-result.png
├── pycharm-ui-themes.png
├── pycharm-welcome.png
├── pycharm-workspace.png
├── python-tutor-visualize.png
├── python-tutor-visualize2.png
├── result-of-dis.png
└── wanwang.png
├── 一个小例子助你彻底理解协程.md
├── 使用Hexo搭建自己的博客.md
├── 常见反爬策略及应对方案.md
├── 我为什么选择了Python.md
├── 接口文档参考示例.md
├── 玩转PyCharm.md
├── 用函数还是用复杂的表达式.md
├── 知乎问题回答.md
├── 英语面试.md
└── 那些年我们踩过的那些坑.md
/.gitignore:
--------------------------------------------------------------------------------
1 | venv
2 | .idea
3 | *.pyc
4 | __pycache__
5 |
6 | ### VisualStudioCode ###
7 | .vscode/*
8 | .vscode/**
9 | !.vscode/settings.json
10 | !.vscode/tasks.json
11 | !.vscode/launch.json
12 | !.vscode/extensions.json
13 |
14 | ### VisualStudioCode Patch ###
15 | # Ignore all local history of files
16 | .history
17 |
--------------------------------------------------------------------------------
/Day01-15/code/Day01/hello.py:
--------------------------------------------------------------------------------
1 | """
2 | 第一个Python程序 - hello, world!
3 | 向伟大的Dennis M. Ritchie先生致敬
4 |
5 | Version: 0.1
6 | Author: 骆昊
7 | Date: 2018-02-26
8 |
9 | 请将该文件命名为hello.py
10 |
11 | 使用Windows的小伙伴可以在命令行提示下通过下面的命令运行该程序
12 | python hello.py
13 |
14 | 对于使用Linux或macOS的小伙伴可以打开终端并键入下面的命令来运行程序
15 | python3 hello.py
16 | """
17 |
18 | print('hello, world!')
19 | # print("你好,世界!")
20 | print('你好', '世界')
21 | print('hello', 'world', sep=', ', end='!')
22 | print('goodbye, world', end='!\n')
23 |
--------------------------------------------------------------------------------
/Day01-15/code/Day02/centigrade.py:
--------------------------------------------------------------------------------
1 | """
2 | 将华氏温度转换为摄氏温度
3 | F = 1.8C + 32
4 |
5 | Version: 0.1
6 | Author: 骆昊
7 | Date: 2018-02-27
8 | """
9 |
10 | f = float(input('请输入华氏温度: '))
11 | c = (f - 32) / 1.8
12 | print('%.1f华氏度 = %.1f摄氏度' % (f, c))
13 |
--------------------------------------------------------------------------------
/Day01-15/code/Day02/circle.py:
--------------------------------------------------------------------------------
1 | """
2 | 输入半径计算圆的周长和面积
3 |
4 | Version: 0.1
5 | Author: 骆昊
6 | Date: 2018-02-27
7 | """
8 | import math
9 |
10 | radius = float(input('请输入圆的半径: '))
11 | perimeter = 2 * math.pi * radius
12 | area = math.pi * radius * radius
13 | print('周长: %.2f' % perimeter)
14 | print('面积: %.2f' % area)
15 |
--------------------------------------------------------------------------------
/Day01-15/code/Day02/leap.py:
--------------------------------------------------------------------------------
1 | """
2 | 输入年份 如果是闰年输出True 否则输出False
3 |
4 | Version: 0.1
5 | Author: 骆昊
6 | Date: 2018-02-27
7 | """
8 |
9 | year = int(input('请输入年份: '))
10 | # 如果代码太长写成一行不便于阅读 可以使用\或()折行
11 | is_leap = (year % 4 == 0 and year % 100 != 0 or
12 | year % 400 == 0)
13 | print(is_leap)
14 |
--------------------------------------------------------------------------------
/Day01-15/code/Day02/operator.py:
--------------------------------------------------------------------------------
1 | """
2 | 运算符的使用
3 |
4 | Version: 0.1
5 | Author: 骆昊
6 | Date: 2018-02-27
7 | """
8 |
9 | a = 5
10 | b = 10
11 | c = 3
12 | d = 4
13 | e = 5
14 | a += b
15 | a -= c
16 | a *= d
17 | a /= e
18 | print("a = ", a)
19 |
20 | flag1 = 3 > 2
21 | flag2 = 2 < 1
22 | flag3 = flag1 and flag2
23 | flag4 = flag1 or flag2
24 | flag5 = not flag1
25 | print("flag1 = ", flag1)
26 | print("flag2 = ", flag2)
27 | print("flag3 = ", flag3)
28 | print("flag4 = ", flag4)
29 | print("flag5 = ", flag5)
30 | print(flag1 is True)
31 | print(flag2 is not False)
32 |
--------------------------------------------------------------------------------
/Day01-15/code/Day02/strings.py:
--------------------------------------------------------------------------------
1 | """
2 | 字符串常用操作
3 |
4 | Version: 0.1
5 | Author: 骆昊
6 | Date: 2018-02-27
7 | """
8 |
9 | str1 = 'hello, world!'
10 | print('字符串的长度是:', len(str1))
11 | print('单词首字母大写: ', str1.title())
12 | print('字符串变大写: ', str1.upper())
13 | # str1 = str1.upper()
14 | print('字符串是不是大写: ', str1.isupper())
15 | print('字符串是不是以hello开头: ', str1.startswith('hello'))
16 | print('字符串是不是以hello结尾: ', str1.endswith('hello'))
17 | print('字符串是不是以感叹号开头: ', str1.startswith('!'))
18 | print('字符串是不是一感叹号结尾: ', str1.endswith('!'))
19 | str2 = '- \u9a86\u660a'
20 | str3 = str1.title() + ' ' + str2.lower()
21 | print(str3)
22 |
--------------------------------------------------------------------------------
/Day01-15/code/Day02/variable1.py:
--------------------------------------------------------------------------------
1 | """
2 | 使用变量保存数据并进行操作
3 |
4 | Version: 0.1
5 | Author: 骆昊
6 | Date: 2018-02-27
7 | """
8 |
9 | a = 321
10 | b = 123
11 | print(a + b)
12 | print(a - b)
13 | print(a * b)
14 | print(a / b)
15 | print(a // b)
16 | print(a % b)
17 | print(a ** b)
18 |
--------------------------------------------------------------------------------
/Day01-15/code/Day02/variable2.py:
--------------------------------------------------------------------------------
1 | """
2 | 将input函数输入的数据保存在变量中并进行操作
3 |
4 | Version: 0.1
5 | Author: 骆昊
6 | Date: 2018-02-27
7 | """
8 |
9 | a = int(input('a = '))
10 | b = int(input('b = '))
11 | print(a + b)
12 | print(a - b)
13 | print(a * b)
14 | print(a / b)
15 | print(a // b)
16 | print(a % b)
17 | print(a ** b)
18 |
--------------------------------------------------------------------------------
/Day01-15/code/Day02/variable3.py:
--------------------------------------------------------------------------------
1 | """
2 | 格式化输出
3 |
4 | Version: 0.1
5 | Author: 骆昊
6 | Date: 2018-02-27
7 | """
8 |
9 | a = int(input('a = '))
10 | b = int(input('b = '))
11 | print('%d + %d = %d' % (a, b, a + b))
12 | print('%d - %d = %d' % (a, b, a - b))
13 | print('%d * %d = %d' % (a, b, a * b))
14 | print('%d / %d = %f' % (a, b, a / b))
15 | print('%d // %d = %d' % (a, b, a // b))
16 | print('%d %% %d = %d' % (a, b, a % b))
17 | print('%d ** %d = %d' % (a, b, a ** b))
18 |
--------------------------------------------------------------------------------
/Day01-15/code/Day02/variable4.py:
--------------------------------------------------------------------------------
1 | """
2 | 检查变量的类型
3 |
4 | Version: 0.1
5 | Author: 骆昊
6 | Date: 2018-02-27
7 | """
8 |
9 | a = 100
10 | b = 1000000000000000000
11 | c = 12.345
12 | d = 1 + 5j
13 | e = 'A'
14 | f = 'hello, world'
15 | g = True
16 | print(type(a))
17 | print(type(b))
18 | print(type(c))
19 | print(type(d))
20 | print(type(e))
21 | print(type(f))
22 | print(type(g))
23 |
--------------------------------------------------------------------------------
/Day01-15/code/Day03/conversion.py:
--------------------------------------------------------------------------------
1 | """
2 | 英制单位英寸和公制单位厘米互换
3 |
4 | Version: 0.1
5 | Author: 骆昊
6 | Date: 2018-02-28
7 | """
8 |
9 | value = float(input('请输入长度: '))
10 | unit = input('请输入单位: ')
11 | if unit == 'in' or unit == '英寸':
12 | print('%f英寸 = %f厘米' % (value, value * 2.54))
13 | elif unit == 'cm' or unit == '厘米':
14 | print('%f厘米 = %f英寸' % (value, value / 2.54))
15 | else:
16 | print('请输入有效的单位')
17 |
--------------------------------------------------------------------------------
/Day01-15/code/Day03/grade.py:
--------------------------------------------------------------------------------
1 | """
2 | 百分制成绩转等级制成绩
3 | 90分以上,输出A
4 | 80分~89分,输出B
5 | 70分~79分,输出C
6 | 60分~69分,输出D
7 | 60分以下,输出E
8 |
9 | Version: 0.1
10 | Author: 骆昊
11 | Date: 2018-02-28
12 | """
13 |
14 | score = float(input('请输入成绩: '))
15 | if score >= 90:
16 | grade = 'A'
17 | elif score >= 80:
18 | grade = 'B'
19 | elif score >= 70:
20 | grade = 'C'
21 | elif score >= 60:
22 | grade = 'D'
23 | else:
24 | grade = 'E'
25 | print('对应的等级是:', grade)
26 |
--------------------------------------------------------------------------------
/Day01-15/code/Day03/piecewise.py:
--------------------------------------------------------------------------------
1 | """
2 | 分段函数求值
3 | 3x - 5 (x > 1)
4 | f(x) = x + 2 (-1 <= x <= 1)
5 | 5x + 3 (x < -1)
6 |
7 | Version: 0.1
8 | Author: 骆昊
9 | Date: 2018-02-28
10 | """
11 |
12 | x = float(input('x = '))
13 | if x > 1:
14 | y = 3 * x - 5
15 | elif x >= -1:
16 | y = x + 2
17 | else:
18 | y = 5 * x + 3
19 | print('f(%.2f) = %.2f' % (x, y))
20 |
--------------------------------------------------------------------------------
/Day01-15/code/Day03/rolldice.py:
--------------------------------------------------------------------------------
1 | """
2 | 掷骰子决定做什么事情
3 |
4 | Version: 0.1
5 | Author: 骆昊
6 | Date: 2018-02-28
7 | """
8 | from random import randint
9 |
10 | face = randint(1, 6)
11 | if face == 1:
12 | result = '唱首歌'
13 | elif face == 2:
14 | result = '跳个舞'
15 | elif face == 3:
16 | result = '学狗叫'
17 | elif face == 4:
18 | result = '做俯卧撑'
19 | elif face == 5:
20 | result = '念绕口令'
21 | else:
22 | result = '讲冷笑话'
23 | print(result)
24 |
--------------------------------------------------------------------------------
/Day01-15/code/Day03/triangle.py:
--------------------------------------------------------------------------------
1 | """
2 | 判断输入的边长能否构成三角形
3 | 如果能则计算出三角形的周长和面积
4 |
5 | Version: 0.1
6 | Author: 骆昊
7 | Date: 2018-02-28
8 | """
9 | import math
10 |
11 | a = float(input('a = '))
12 | b = float(input('b = '))
13 | c = float(input('c = '))
14 | if a + b > c and a + c > b and b + c > a:
15 | print('周长: %f' % (a + b + c))
16 | p = (a + b + c) / 2
17 | area = math.sqrt(p * (p - a) * (p - b) * (p - c))
18 | print('面积: %f' % (area))
19 | else:
20 | print('不能构成三角形')
21 |
--------------------------------------------------------------------------------
/Day01-15/code/Day03/verify.py:
--------------------------------------------------------------------------------
1 | """
2 | 用户身份验证
3 |
4 | Version: 0.1
5 | Author: 骆昊
6 | Date: 2018-02-28
7 | """
8 | # import getpass
9 | # from getpass import getpass
10 | # from getpass import *
11 |
12 | username = input('请输入用户名: ')
13 | password = input('请输入口令: ')
14 | # 输入口令的时候终端中没有回显
15 | # password = getpass.getpass('请输入口令: ')
16 | if username == 'admin' and password == '123456':
17 | print('身份验证成功!')
18 | else:
19 | print('身份验证失败!')
20 |
--------------------------------------------------------------------------------
/Day01-15/code/Day04/for1.py:
--------------------------------------------------------------------------------
1 | """
2 | 用for循环实现1~100求和
3 |
4 | Version: 0.1
5 | Author: 骆昊
6 | Date: 2018-03-01
7 | """
8 |
9 | sum = 0
10 | for x in range(1, 101):
11 | sum += x
12 | print(sum)
13 |
--------------------------------------------------------------------------------
/Day01-15/code/Day04/for2.py:
--------------------------------------------------------------------------------
1 | """
2 | 用for循环实现1~100之间的偶数求和
3 |
4 | Version: 0.1
5 | Author: 骆昊
6 | Date: 2018-03-01
7 | """
8 |
9 | sum = 0
10 | for x in range(2, 101, 2):
11 | sum += x
12 | print(sum)
13 |
--------------------------------------------------------------------------------
/Day01-15/code/Day04/for3.py:
--------------------------------------------------------------------------------
1 | """
2 | 输入非负整数n计算n!
3 |
4 | Version: 0.1
5 | Author: 骆昊
6 | Date: 2018-03-01
7 | """
8 |
9 | n = int(input('n = '))
10 | result = 1
11 | for x in range(1, n + 1):
12 | result *= x
13 | print('%d! = %d' % (n, result))
14 |
--------------------------------------------------------------------------------
/Day01-15/code/Day04/for4.py:
--------------------------------------------------------------------------------
1 | """
2 | 输入一个正整数判断它是不是素数
3 |
4 | Version: 0.1
5 | Author: 骆昊
6 | Date: 2018-03-01
7 | """
8 | from math import sqrt
9 |
10 | num = int(input('请输入一个正整数: '))
11 | end = int(sqrt(num))
12 | is_prime = True
13 | for x in range(2, end + 1):
14 | if num % x == 0:
15 | is_prime = False
16 | break
17 | if is_prime and num != 1:
18 | print('%d是素数' % num)
19 | else:
20 | print('%d不是素数' % num)
21 |
--------------------------------------------------------------------------------
/Day01-15/code/Day04/for5.py:
--------------------------------------------------------------------------------
1 | """
2 | 输入两个正整数计算最大公约数和最小公倍数
3 |
4 | Version: 0.1
5 | Author: 骆昊
6 | Date: 2018-03-01
7 | """
8 |
9 | x = int(input('x = '))
10 | y = int(input('y = '))
11 | if x > y:
12 | (x, y) = (y, x)
13 | for factor in range(x, 0, -1):
14 | if x % factor == 0 and y % factor == 0:
15 | print('%d和%d的最大公约数是%d' % (x, y, factor))
16 | print('%d和%d的最小公倍数是%d' % (x, y, x * y // factor))
17 | break
18 |
--------------------------------------------------------------------------------
/Day01-15/code/Day04/while1.py:
--------------------------------------------------------------------------------
1 | """
2 | 用while循环实现1~100求和
3 |
4 | Version: 0.1
5 | Author: 骆昊
6 | Date: 2018-03-01
7 | """
8 |
9 | sum = 0
10 | num = 1
11 | while num <= 100:
12 | sum += num
13 | num += 1
14 | print(sum)
15 |
--------------------------------------------------------------------------------
/Day01-15/code/Day04/while2.py:
--------------------------------------------------------------------------------
1 | """
2 | 用while循环实现1~100之间的偶数求和
3 |
4 | Version: 0.1
5 | Author: 骆昊
6 | Date: 2018-03-01
7 | """
8 |
9 | sum, num = 0, 2
10 | while num <= 100:
11 | sum += num
12 | num += 2
13 | print(sum)
14 |
--------------------------------------------------------------------------------
/Day01-15/code/Day05/chicken.py:
--------------------------------------------------------------------------------
1 | """
2 | 求解《百钱百鸡》问题
3 | 1只公鸡5元 1只母鸡3元 3只小鸡1元 用100元买100只鸡
4 | 问公鸡 母鸡 小鸡各有多少只
5 |
6 | Version: 0.1
7 | Author: 骆昊
8 | Date: 2018-03-02
9 | """
10 |
11 | for x in range(0, 20):
12 | for y in range(0, 33):
13 | z = 100 - x - y
14 | if 5 * x + 3 * y + z / 3 == 100:
15 | print('公鸡: %d只, 母鸡: %d只, 小鸡: %d只' % (x, y, z))
16 |
--------------------------------------------------------------------------------
/Day01-15/code/Day05/fibonacci.py:
--------------------------------------------------------------------------------
1 | """
2 | 输出斐波那契数列的前20个数
3 | 1 1 2 3 5 8 13 21 ...
4 |
5 | Version: 0.1
6 | Author: 骆昊
7 | Date: 2018-03-02
8 | """
9 |
10 | a = 0
11 | b = 1
12 | for _ in range(20):
13 | a, b = b, a + b
14 | print(a, end=' ')
15 |
--------------------------------------------------------------------------------
/Day01-15/code/Day05/guess.py:
--------------------------------------------------------------------------------
1 | """
2 | 猜数字游戏
3 | 计算机出一个1~100之间的随机数由人来猜
4 | 计算机根据人猜的数字分别给出提示大一点/小一点/猜对了
5 |
6 | Version: 0.1
7 | Author: 骆昊
8 | Date: 2018-03-02
9 | """
10 | import random
11 |
12 | answer = random.randint(1, 100)
13 | counter = 0
14 | while True:
15 | counter += 1
16 | number = int(input('请输入: '))
17 | if number < answer:
18 | print('大一点')
19 | elif number > answer:
20 | print('小一点')
21 | else:
22 | print('恭喜你猜对了!')
23 | break
24 | print('你总共猜了%d次' % counter)
25 | if counter > 7:
26 | print('你的智商余额明显不足')
27 |
--------------------------------------------------------------------------------
/Day01-15/code/Day05/lily.py:
--------------------------------------------------------------------------------
1 | """
2 | 找出100~999之间的所有水仙花数
3 | 水仙花数是各位立方和等于这个数本身的数
4 | 如: 153 = 1**3 + 5**3 + 3**3
5 |
6 | Version: 0.1
7 | Author: 骆昊
8 | Date: 2018-03-02
9 | """
10 |
11 | for num in range(100, 1000):
12 | low = num % 10
13 | mid = num // 10 % 10
14 | high = num // 100
15 | if num == low ** 3 + mid ** 3 + high ** 3:
16 | print(num)
17 |
--------------------------------------------------------------------------------
/Day01-15/code/Day05/palindrome.py:
--------------------------------------------------------------------------------
1 | """
2 | 判断输入的正整数是不是回文数
3 | 回文数是指将一个正整数从左往右排列和从右往左排列值一样的数
4 |
5 | Version: 0.1
6 | Author: 骆昊
7 | Date: 2018-03-02
8 | """
9 |
10 | num = int(input('请输入一个正整数: '))
11 | temp = num
12 | num2 = 0
13 | while temp > 0:
14 | num2 *= 10
15 | num2 += temp % 10
16 | temp //= 10
17 | if num == num2:
18 | print('%d是回文数' % num)
19 | else:
20 | print('%d不是回文数' % num)
21 |
--------------------------------------------------------------------------------
/Day01-15/code/Day05/perfect.py:
--------------------------------------------------------------------------------
1 | """
2 | 找出1~9999之间的所有完美数
3 | 完美数是除自身外其他所有因子的和正好等于这个数本身的数
4 | 例如: 6 = 1 + 2 + 3, 28 = 1 + 2 + 4 + 7 + 14
5 |
6 | Version: 0.1
7 | Author: 骆昊
8 | Date: 2018-03-02
9 | """
10 | import math
11 |
12 | for num in range(2, 10000):
13 | result = 0
14 | for factor in range(1, int(math.sqrt(num)) + 1):
15 | if num % factor == 0:
16 | result += factor
17 | if factor > 1 and num // factor != factor:
18 | result += num // factor
19 | if result == num:
20 | print(num)
21 |
--------------------------------------------------------------------------------
/Day01-15/code/Day05/prime.py:
--------------------------------------------------------------------------------
1 | """
2 | 输出2~99之间的素数
3 |
4 | Version: 0.1
5 | Author: 骆昊
6 | Date: 2018-03-02
7 | """
8 |
9 | import math
10 |
11 | for num in range(2, 100):
12 | is_prime = True
13 | for factor in range(2, int(math.sqrt(num)) + 1):
14 | if num % factor == 0:
15 | is_prime = False
16 | break
17 | if is_prime:
18 | print(num, end=' ')
19 |
--------------------------------------------------------------------------------
/Day01-15/code/Day05/table.py:
--------------------------------------------------------------------------------
1 | """
2 | 输出乘法口诀表(九九表)
3 |
4 | Version: 0.1
5 | Author: 骆昊
6 | Date: 2018-03-02
7 | """
8 |
9 | for i in range(1, 10):
10 | for j in range(1, i + 1):
11 | print('%d*%d=%d' % (i, j, i * j), end='\t')
12 | print()
13 |
--------------------------------------------------------------------------------
/Day01-15/code/Day06/function1.py:
--------------------------------------------------------------------------------
1 | """
2 | 函数的定义和使用 - 计算组合数C(7,3)
3 |
4 | Version: 0.1
5 | Author: 骆昊
6 | Date: 2018-03-05
7 | """
8 |
9 |
10 | # 将求阶乘的功能封装成一个函数
11 | def factorial(n):
12 | result = 1
13 | for num in range(1, n + 1):
14 | result *= num
15 | return result
16 |
17 |
18 | print(factorial(7) // factorial(3) // factorial(4))
19 |
--------------------------------------------------------------------------------
/Day01-15/code/Day06/function2.py:
--------------------------------------------------------------------------------
1 | """
2 | 函数的定义和使用 - 求最大公约数和最小公倍数
3 |
4 | Version: 0.1
5 | Author: 骆昊
6 | Date: 2018-03-05
7 | """
8 |
9 |
10 | def gcd(x, y):
11 | if x > y:
12 | (x, y) = (y, x)
13 | for factor in range(x, 1, -1):
14 | if x % factor == 0 and y % factor == 0:
15 | return factor
16 | return 1
17 |
18 |
19 | def lcm(x, y):
20 | return x * y // gcd(x, y)
21 |
22 |
23 | print(gcd(15, 27))
24 | print(lcm(15, 27))
25 |
--------------------------------------------------------------------------------
/Day01-15/code/Day06/function6.py:
--------------------------------------------------------------------------------
1 | """
2 | 作用域问题
3 |
4 | Version: 0.1
5 | Author: 骆昊
6 | Date: 2018-03-05
7 | """
8 |
9 |
10 | # 局部作用域
11 | def foo1():
12 | a = 5
13 |
14 |
15 | foo1()
16 | # print(a) # NameError
17 |
18 | # 全局作用域
19 | b = 10
20 |
21 |
22 | def foo2():
23 | print(b)
24 |
25 |
26 | foo2()
27 |
28 |
29 | def foo3():
30 | b = 100 # 局部变量
31 | print(b)
32 |
33 |
34 | foo3()
35 | print(b)
36 |
37 |
38 | def foo4():
39 | global b
40 | b = 200 # 全局变量
41 | print(b)
42 |
43 |
44 | foo4()
45 | print(b)
46 |
--------------------------------------------------------------------------------
/Day01-15/code/Day07/dict2.py:
--------------------------------------------------------------------------------
1 | """
2 | 字典的常用操作
3 |
4 | Version: 0.1
5 | Author: 骆昊
6 | Date: 2018-03-06
7 | """
8 |
9 |
10 | def main():
11 | stu = {'name': '骆昊', 'age': 38, 'gender': True}
12 | print(stu)
13 | print(stu.keys())
14 | print(stu.values())
15 | print(stu.items())
16 | for elem in stu.items():
17 | print(elem)
18 | print(elem[0], elem[1])
19 | if 'age' in stu:
20 | stu['age'] = 20
21 | print(stu)
22 | stu.setdefault('score', 60)
23 | print(stu)
24 | stu.setdefault('score', 100)
25 | print(stu)
26 | stu['score'] = 100
27 | print(stu)
28 |
29 |
30 | if __name__ == '__main__':
31 | main()
32 |
--------------------------------------------------------------------------------
/Day01-15/code/Day07/fibonacci.py:
--------------------------------------------------------------------------------
1 | """
2 | 生成斐波拉切数列
3 |
4 | Version: 0.1
5 | Author: 骆昊
6 | Date: 2018-03-06
7 | """
8 |
9 |
10 | def main():
11 | f = [1 , 1]
12 | for i in range(2, 20):
13 | f += [f[i - 1] + f[i - 2]]
14 | # f.append(f[i - 1] + f[i - 2])
15 | for val in f:
16 | print(val, end=' ')
17 |
18 |
19 | if __name__ == '__main__':
20 | main()
21 |
--------------------------------------------------------------------------------
/Day01-15/code/Day07/marquee.py:
--------------------------------------------------------------------------------
1 | """
2 | 输入学生考试成绩计算平均分
3 |
4 | Version: 0.1
5 | Author: 骆昊
6 | Date: 2018-03-06
7 | """
8 |
9 | import os
10 | import time
11 |
12 |
13 | def main():
14 | str = 'Welcome to 1000 Phone Chengdu Campus '
15 | while True:
16 | print(str)
17 | time.sleep(0.2)
18 | str = str[1:] + str[0:1]
19 | # for Windows use os.system('cls') instead
20 | os.system('clear')
21 |
22 |
23 | if __name__ == '__main__':
24 | main()
25 |
--------------------------------------------------------------------------------
/Day01-15/code/Day08/access.py:
--------------------------------------------------------------------------------
1 | class Test:
2 |
3 | def __init__(self, foo):
4 | self.__foo = foo
5 |
6 | def __bar(self):
7 | print(self.__foo)
8 | print('__bar')
9 |
10 |
11 | def main():
12 | test = Test('hello')
13 | test._Test__bar()
14 | print(test._Test__foo)
15 |
16 |
17 | if __name__ == "__main__":
18 | main()
19 |
--------------------------------------------------------------------------------
/Day01-15/code/Day08/hack.py:
--------------------------------------------------------------------------------
1 | """
2 | 另一种创建类的方式
3 |
4 | Version: 0.1
5 | Author: 骆昊
6 | Date: 2018-03-08
7 | """
8 |
9 |
10 | def bar(self, name):
11 | self._name = name
12 |
13 |
14 | def foo(self, course_name):
15 | print('%s正在学习%s.' % (self._name, course_name))
16 |
17 |
18 | def main():
19 | Student = type('Student', (object,), dict(__init__=bar, study=foo))
20 | stu1 = Student('骆昊')
21 | stu1.study('Python程序设计')
22 |
23 |
24 | if __name__ == '__main__':
25 | main()
26 |
--------------------------------------------------------------------------------
/Day01-15/code/Day10/turtle1.py:
--------------------------------------------------------------------------------
1 | """
2 |
3 | 用turtle模块绘图
4 | 这是一个非常有趣的模块 它模拟一只乌龟在窗口上爬行的方式来进行绘图
5 |
6 | Version: 0.1
7 | Author: 骆昊
8 | Date: 2018-03-14
9 |
10 | """
11 |
12 | import turtle
13 |
14 | turtle.pensize(3)
15 | turtle.penup()
16 | turtle.goto(-180, 150)
17 | turtle.pencolor('red')
18 | turtle.fillcolor('yellow')
19 | turtle.pendown()
20 | turtle.begin_fill()
21 | for _ in range(36):
22 | turtle.forward(200)
23 | turtle.right(170)
24 | turtle.end_fill()
25 | turtle.mainloop()
26 |
--------------------------------------------------------------------------------
/Day01-15/code/Day11/csv1.py:
--------------------------------------------------------------------------------
1 | """
2 | 读取CSV文件
3 |
4 | Version: 0.1
5 | Author: 骆昊
6 | Date: 2018-03-13
7 | """
8 |
9 | import csv
10 |
11 | filename = 'example.csv'
12 |
13 | try:
14 | with open(filename) as f:
15 | reader = csv.reader(f)
16 | data = list(reader)
17 | except FileNotFoundError:
18 | print('无法打开文件:', filename)
19 | else:
20 | for item in data:
21 | print('%-30s%-20s%-10s' % (item[0], item[1], item[2]))
22 |
--------------------------------------------------------------------------------
/Day01-15/code/Day11/ex1.py:
--------------------------------------------------------------------------------
1 | """
2 | 异常机制 - 处理程序在运行时可能发生的状态
3 |
4 | Version: 0.1
5 | Author: 骆昊
6 | Date: 2018-03-13
7 | """
8 |
9 | input_again = True
10 | while input_again:
11 | try:
12 | a = int(input('a = '))
13 | b = int(input('b = '))
14 | print('%d / %d = %f' % (a, b, a / b))
15 | input_again = False
16 | except ValueError:
17 | print('请输入整数')
18 | except ZeroDivisionError:
19 | print('除数不能为0')
20 | # 处理异常让代码不因异常而崩溃是一方面
21 | # 更重要的是可以通过对异常的处理让代码从异常中恢复过来
22 |
--------------------------------------------------------------------------------
/Day01-15/code/Day11/ex2.py:
--------------------------------------------------------------------------------
1 | """
2 | 异常机制 - 处理程序在运行时可能发生的状态
3 |
4 | Version: 0.1
5 | Author: 骆昊
6 | Date: 2018-03-13
7 | """
8 |
9 | input_again = True
10 | while input_again:
11 | try:
12 | a = int(input('a = '))
13 | b = int(input('b = '))
14 | print('%d / %d = %f' % (a, b, a / b))
15 | input_again = False
16 | except (ValueError, ZeroDivisionError) as msg:
17 | print(msg)
18 |
--------------------------------------------------------------------------------
/Day01-15/code/Day11/ex3.py:
--------------------------------------------------------------------------------
1 | """
2 | 异常机制 - 处理程序在运行时可能发生的状态
3 |
4 | Version: 0.1
5 | Author: 骆昊
6 | Date: 2018-03-13
7 | """
8 |
9 | import time
10 | import sys
11 |
12 | filename = input('请输入文件名: ')
13 | try:
14 | with open(filename) as f:
15 | lines = f.readlines()
16 | except FileNotFoundError as msg:
17 | print('无法打开文件:', filename)
18 | print(msg)
19 | except UnicodeDecodeError as msg:
20 | print('非文本文件无法解码')
21 | sys.exit()
22 | else:
23 | for line in lines:
24 | print(line.rstrip())
25 | time.sleep(0.5)
26 | finally:
27 | # 此处最适合做善后工作
28 | print('不管发生什么我都会执行')
29 |
--------------------------------------------------------------------------------
/Day01-15/code/Day11/ex4.py:
--------------------------------------------------------------------------------
1 | """
2 | 引发异常和异常栈
3 |
4 | Version: 0.1
5 | Author: 骆昊
6 | Date: 2018-03-13
7 | """
8 |
9 |
10 | def f1():
11 | raise AssertionError('发生异常')
12 |
13 |
14 | def f2():
15 | f1()
16 |
17 |
18 | def f3():
19 | f2()
20 |
21 |
22 | f3()
23 |
--------------------------------------------------------------------------------
/Day01-15/code/Day11/example.csv:
--------------------------------------------------------------------------------
1 | 4/5/2014 13:34,Apples,73
2 | 4/5/2014 3:41,Cherries,85
3 | 4/6/2014 12:46,Pears,14
4 | 4/8/2014 8:59,Oranges,52
5 | 4/10/2014 2:07,Apples,152
6 | 4/10/2014 18:10,Bananas,23
7 | 4/10/2014 2:40,Strawberries,98
8 |
--------------------------------------------------------------------------------
/Day01-15/code/Day11/file1.py:
--------------------------------------------------------------------------------
1 | """
2 | 从文本文件中读取数据
3 |
4 | Version: 0.1
5 | Author: 骆昊
6 | Date: 2018-03-13
7 | """
8 |
9 | import time
10 |
11 |
12 | def main():
13 | # 一次性读取整个文件内容
14 | with open('致橡树.txt', 'r', encoding='utf-8') as f:
15 | print(f.read())
16 |
17 | # 通过for-in循环逐行读取
18 | with open('致橡树.txt', mode='r') as f:
19 | for line in f:
20 | print(line, end='')
21 | time.sleep(0.5)
22 | print()
23 |
24 | # 读取文件按行读取到列表中
25 | with open('致橡树.txt') as f:
26 | lines = f.readlines()
27 | print(lines)
28 |
29 |
30 | if __name__ == '__main__':
31 | main()
32 |
--------------------------------------------------------------------------------
/Day01-15/code/Day11/file2.py:
--------------------------------------------------------------------------------
1 | """
2 | 读取圆周率文件判断其中是否包含自己的生日
3 |
4 | Version: 0.1
5 | Author: 骆昊
6 | Date: 2018-03-13
7 | """
8 |
9 | birth = input('请输入你的生日: ')
10 | with open('pi_million_digits.txt') as f:
11 | lines = f.readlines()
12 | pi_string = ''
13 | for line in lines:
14 | pi_string += line.strip()
15 | if birth in pi_string:
16 | print('Bingo!!!')
17 |
--------------------------------------------------------------------------------
/Day01-15/code/Day11/file3.py:
--------------------------------------------------------------------------------
1 | """
2 | 写文本文件
3 | 将100以内的素数写入到文件中
4 |
5 | Version: 0.1
6 | Author: 骆昊
7 | Date: 2018-03-13
8 | """
9 |
10 | from math import sqrt
11 |
12 |
13 | def is_prime(n):
14 | for factor in range(2, int(sqrt(n)) + 1):
15 | if n % factor == 0:
16 | return False
17 | return True
18 |
19 |
20 | # 试一试有什么不一样
21 | # with open('prime.txt', 'a') as f:
22 | with open('prime.txt', 'w') as f:
23 | for num in range(2, 100):
24 | if is_prime(num):
25 | f.write(str(num) + '\n')
26 | print('写入完成!')
27 |
--------------------------------------------------------------------------------
/Day01-15/code/Day11/file4.py:
--------------------------------------------------------------------------------
1 | """
2 | 读写二进制文件
3 |
4 | Version: 0.1
5 | Author: 骆昊
6 | Date: 2018-03-13
7 | """
8 | import base64
9 |
10 | with open('mm.jpg', 'rb') as f:
11 | data = f.read()
12 | # print(type(data))
13 | # print(data)
14 | print('字节数:', len(data))
15 | # 将图片处理成BASE-64编码
16 | print(base64.b64encode(data))
17 |
18 | with open('girl.jpg', 'wb') as f:
19 | f.write(data)
20 | print('写入完成!')
21 |
--------------------------------------------------------------------------------
/Day01-15/code/Day11/json2.py:
--------------------------------------------------------------------------------
1 | """
2 | 写入JSON文件
3 |
4 | Version: 0.1
5 | Author: 骆昊
6 | Date: 2018-03-13
7 | """
8 |
9 | import json
10 |
11 | teacher_dict = {'name': '白元芳', 'age': 25, 'title': '讲师'}
12 | json_str = json.dumps(teacher_dict)
13 | print(json_str)
14 | print(type(json_str))
15 | fruits_list = ['apple', 'orange', 'strawberry', 'banana', 'pitaya']
16 | json_str = json.dumps(fruits_list)
17 | print(json_str)
18 | print(type(json_str))
19 |
--------------------------------------------------------------------------------
/Day01-15/code/Day11/mm.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day01-15/code/Day11/mm.jpg
--------------------------------------------------------------------------------
/Day01-15/code/Day11/teacher.csv:
--------------------------------------------------------------------------------
1 | 骆昊,38,叫兽
2 | 狄仁杰,25,砖家
3 |
--------------------------------------------------------------------------------
/Day01-15/code/Day11/致橡树.txt:
--------------------------------------------------------------------------------
1 | 我如果爱你
2 | 绝不学攀援的凌霄花
3 | 借你的高枝炫耀自己
4 |
5 | 我如果爱你
6 | 绝不学痴情的鸟儿
7 | 为绿荫重复单调的歌曲
8 |
9 | 也不止像泉源
10 | 常年送来清凉的慰藉
11 | 也不止像险峰
12 | 增加你的高度 衬托你的威仪
13 | 甚至日光 甚至春雨
14 | 不 这些都还不够
15 | 我必须是你近旁的一株木棉
16 | 作为树的形象和你站在一起
17 | 根 紧握在地下
18 | 叶 相触在云里
19 | 每一阵风过
20 | 我们都互相致意
21 | 但没有人 听懂我们的言语
22 | 你有你的铜枝铁干
23 | 像刀 像剑 也像戟;
24 | 我有我红硕的花朵
25 | 像沉重的叹息 又像英勇的火炬
26 | 我们分担寒潮、风雷、霹雳
27 | 我们共享雾霭、流岚、虹霓
28 | 仿佛永远分离 却又终身相依
29 | 这才是伟大的爱情
30 | 坚贞就在这里
31 | 爱 不仅爱你伟岸的身躯
32 | 也爱你坚持的位置 足下的土地
--------------------------------------------------------------------------------
/Day01-15/code/Day12/test3.py:
--------------------------------------------------------------------------------
1 | """
2 | 验证输入用户名和QQ号是否有效并给出对应的提示信息
3 |
4 | 要求:
5 | 用户名必须由字母、数字或下划线构成且长度在6~20个字符之间
6 | QQ号是5~12的数字且首位不能为0
7 | """
8 |
9 | import re
10 |
11 |
12 | def main():
13 | username = input('请输入用户名: ')
14 | qq = input('请输入QQ号: ')
15 | m1 = re.match(r'^[0-9a-zA-Z_]{6,20}$', username)
16 | if not m1:
17 | print('请输入有效的用户名.')
18 | m2 = re.match(r'^[1-9]\d{4,11}$', qq)
19 | if not m2:
20 | print('请输入有效的QQ号.')
21 | if m1 and m2:
22 | print('你输入的信息是有效的!')
23 |
24 |
25 | if __name__ == '__main__':
26 | main()
27 |
--------------------------------------------------------------------------------
/Day01-15/code/Day12/test5.py:
--------------------------------------------------------------------------------
1 | """
2 | 不良内容过滤
3 | """
4 | import re
5 |
6 |
7 | def main():
8 | sentence = '你丫是傻叉吗? 我操你大爷的. Fuck you.'
9 | purified = re.sub('[操肏艹]|fuck|shit|傻[比屄逼叉缺吊屌]|煞笔',
10 | '*', sentence, flags=re.IGNORECASE)
11 | print(purified)
12 |
13 |
14 | if __name__ == '__main__':
15 | main()
16 |
--------------------------------------------------------------------------------
/Day01-15/code/Day13/asyncio2.py:
--------------------------------------------------------------------------------
1 | """
2 | 异步I/O操作 - async和await
3 |
4 | Version: 0.1
5 | Author: 骆昊
6 | Date: 2018-03-21
7 | """
8 | import asyncio
9 | import threading
10 |
11 |
12 | # 通过async修饰的函数不再是普通函数而是一个协程
13 | # 注意async和await将在Python 3.7中作为关键字出现
14 | async def hello():
15 | print('%s: hello, world!' % threading.current_thread())
16 | await asyncio.sleep(2)
17 | print('%s: goodbye, world!' % threading.current_thread())
18 |
19 |
20 | loop = asyncio.get_event_loop()
21 | tasks = [hello(), hello()]
22 | # 等待两个异步I/O操作执行结束
23 | loop.run_until_complete(asyncio.wait(tasks))
24 | loop.close()
25 |
--------------------------------------------------------------------------------
/Day01-15/code/Day13/generator1.py:
--------------------------------------------------------------------------------
1 | """
2 | 生成器 - 生成器语法
3 |
4 | Version: 0.1
5 | Author: 骆昊
6 | Date: 2018-03-21
7 | """
8 |
9 | seq = [x * x for x in range(10)]
10 | print(seq)
11 |
12 | gen = (x * x for x in range(10))
13 | print(gen)
14 | for x in gen:
15 | print(x)
16 |
17 | num = 10
18 | gen = (x ** y for x, y in zip(range(1, num), range(num - 1, 0, -1)))
19 | print(gen)
20 | n = 1
21 | while n < num:
22 | print(next(gen))
23 | n += 1
24 |
--------------------------------------------------------------------------------
/Day01-15/code/Day13/generator2.py:
--------------------------------------------------------------------------------
1 | """
2 | 生成器 - 使用yield关键字
3 |
4 | Version: 0.1
5 | Author: 骆昊
6 | Date: 2018-03-21
7 | """
8 |
9 |
10 | def fib(num):
11 | n, a, b = 0, 0, 1
12 | while n < num:
13 | yield b
14 | a, b = b, a + b
15 | n += 1
16 |
17 |
18 | for x in fib(20):
19 | print(x)
20 |
--------------------------------------------------------------------------------
/Day01-15/code/Day13/multiprocess3.py:
--------------------------------------------------------------------------------
1 | """
2 | 创建进程调用其他程序
3 |
4 | Version: 0.1
5 | Author: 骆昊
6 | Date: 2018-03-20
7 | """
8 |
9 | import subprocess
10 | import sys
11 |
12 | def main():
13 | # 通过sys.argv获取命令行参数
14 | if len(sys.argv) > 1:
15 | # 第一个命令行参数是程序本身所以从第二个开始取
16 | for index in range(1, len(sys.argv)):
17 | try:
18 | # 通过subprocess模块的call函数启动子进程
19 | status = subprocess.call(sys.argv[index])
20 | except FileNotFoundError:
21 | print('不能执行%s命令' % sys.argv[index])
22 | else:
23 | print('请使用命令行参数指定要执行的进程')
24 |
25 |
26 | if __name__ == '__main__':
27 | main()
28 |
--------------------------------------------------------------------------------
/Day01-15/code/Day13/multiprocess4.py:
--------------------------------------------------------------------------------
1 | from time import time
2 |
3 |
4 | def main():
5 | total = 0
6 | number_list = [x for x in range(1, 100000001)]
7 | start = time()
8 | for number in number_list:
9 | total += number
10 | print(total)
11 | end = time()
12 | print('Execution time: %.3fs' % (end - start))
13 |
14 |
15 | if __name__ == '__main__':
16 | main()
--------------------------------------------------------------------------------
/Day01-15/code/Day13/singlethread1.py:
--------------------------------------------------------------------------------
1 | """
2 | 不使用多线程的情况 - 模拟多个下载任务
3 |
4 | Version: 0.1
5 | Author: 骆昊
6 | Date: 2018-03-20
7 | """
8 |
9 | from random import randint
10 | from time import time, sleep
11 |
12 |
13 | def download_task(filename):
14 | print('开始下载%s...' % filename)
15 | time_to_download = randint(5, 10)
16 | sleep(time_to_download)
17 | print('下载完成! 耗费了%d秒' % time_to_download)
18 |
19 |
20 | def main():
21 | start = time()
22 | download_task('Python从入门到住院.pdf')
23 | download_task('Peking Hot.avi')
24 | end = time()
25 | print('总共耗费了%.2f秒.' % (end - start))
26 |
27 |
28 | if __name__ == '__main__':
29 | main()
30 |
--------------------------------------------------------------------------------
/Day01-15/code/Day14/guido.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day01-15/code/Day14/guido.jpg
--------------------------------------------------------------------------------
/Day01-15/code/Day14/socket1.py:
--------------------------------------------------------------------------------
1 | """
2 | 套接字 - 基于TCP协议创建时间服务器
3 |
4 | Version: 0.1
5 | Author: 骆昊
6 | Date: 2018-03-22
7 | """
8 |
9 | from socket import *
10 | from time import *
11 |
12 | server = socket(AF_INET, SOCK_STREAM)
13 | server.bind(('localhost', 6789))
14 | server.listen()
15 | print('服务器已经启动正在监听客户端连接.')
16 | while True:
17 | client, addr = server.accept()
18 | print('客户端%s:%d连接成功.' % (addr[0], addr[1]))
19 | currtime = localtime(time())
20 | timestr = strftime('%Y-%m-%d %H:%M:%S', currtime)
21 | client.send(timestr.encode('utf-8'))
22 | client.close()
23 | server.close()
24 |
--------------------------------------------------------------------------------
/Day01-15/code/Day14/socket2.py:
--------------------------------------------------------------------------------
1 | """
2 | 套接字 - 基于TCP协议创建时间客户端
3 |
4 | Version: 0.1
5 | Author: 骆昊
6 | Date: 2018-03-22
7 | """
8 |
9 | from socket import *
10 |
11 | client = socket(AF_INET, SOCK_STREAM)
12 | client.connect(('localhost', 6789))
13 | while True:
14 | data = client.recv(1024)
15 | if not data:
16 | break
17 | print(data.decode('utf-8'))
18 | client.close()
19 |
--------------------------------------------------------------------------------
/Day01-15/code/Day14/socket3.py:
--------------------------------------------------------------------------------
1 | """
2 | 套接字 - 基于UDP协议Echo服务器
3 |
4 | Version: 0.1
5 | Author: 骆昊
6 | Date: 2018-03-22
7 | """
8 | from socket import *
9 | from time import *
10 |
11 | server = socket(AF_INET, SOCK_DGRAM)
12 | server.bind(('localhost', 6789))
13 | while True:
14 | data, addr = server.recvfrom(1024)
15 | server.sendto(data, addr)
16 | server.close()
17 |
--------------------------------------------------------------------------------
/Day01-15/code/Day14/socket4.py:
--------------------------------------------------------------------------------
1 | """
2 | 套接字 - 基于UDP协议创建Echo客户端
3 |
4 | Version: 0.1
5 | Author: 骆昊
6 | Date: 2018-03-22
7 | """
8 |
9 | from socket import *
10 |
11 | client = socket(AF_INET, SOCK_DGRAM)
12 | while True:
13 | data_str = input('请输入: ')
14 | client.sendto(data_str.encode('utf-8'), ('localhost', 6789))
15 | data, addr = client.recvfrom(1024)
16 | data_str = data.decode('utf-8')
17 | print('服务器回应:', data_str)
18 | if data_str == 'bye':
19 | break
20 | client.close()
21 |
--------------------------------------------------------------------------------
/Day01-15/code/Day14/socket5.py:
--------------------------------------------------------------------------------
1 | """
2 | 使用socketserver模块创建时间服务器
3 |
4 | Version: 0.1
5 | Author: 骆昊
6 | Date: 2018-03-22
7 | """
8 | from socketserver import TCPServer, StreamRequestHandler
9 | from time import *
10 |
11 |
12 | class EchoRequestHandler(StreamRequestHandler):
13 |
14 | def handle(self):
15 | currtime = localtime(time())
16 | timestr = strftime('%Y-%m-%d %H:%M:%S', currtime)
17 | self.wfile.write(timestr.encode('utf-8'))
18 |
19 |
20 | server = TCPServer(('localhost', 6789), EchoRequestHandler)
21 | server.serve_forever()
22 |
--------------------------------------------------------------------------------
/Day01-15/code/Day14/timeclient.py:
--------------------------------------------------------------------------------
1 | from socket import socket
2 |
3 |
4 | def main():
5 | client = socket()
6 | client.connect(('10.7.152.69', 6789))
7 | print(client.recv(1024).decode('utf-8'))
8 | client.close()
9 |
10 |
11 | if __name__ == '__main__':
12 | main()
13 |
--------------------------------------------------------------------------------
/Day01-15/code/Day15/excel2.py:
--------------------------------------------------------------------------------
1 | """
2 | 读取Excel文件
3 |
4 | Version: 0.1
5 | Author: 骆昊
6 | Date: 2018-03-26
7 | """
8 |
9 | from openpyxl import load_workbook
10 | from openpyxl import Workbook
11 |
12 | workbook = load_workbook('./res/学生明细表.xlsx')
13 | print(workbook.sheetnames)
14 | sheet = workbook[workbook.sheetnames[0]]
15 | print(sheet.title)
16 | for row in range(2, 7):
17 | for col in range(65, 70):
18 | cell_index = chr(col) + str(row)
19 | print(sheet[cell_index].value, end='\t')
20 | print()
21 |
--------------------------------------------------------------------------------
/Day01-15/code/Day15/pdf1.py:
--------------------------------------------------------------------------------
1 | """
2 | 创建PDF文件
3 |
4 | Version: 0.1
5 | Author: 骆昊
6 | Date: 2018-03-26
7 | """
--------------------------------------------------------------------------------
/Day01-15/code/Day15/pdf2.py:
--------------------------------------------------------------------------------
1 | """
2 | 读取PDF文件
3 |
4 | Version: 0.1
5 | Author: 骆昊
6 | Date: 2018-03-26
7 | """
8 |
9 | from PyPDF2 import PdfFileReader
10 |
11 | with open('./res/Python课程大纲.pdf', 'rb') as f:
12 | reader = PdfFileReader(f, strict=False)
13 | print(reader.numPages)
14 | if reader.isEncrypted:
15 | reader.decrypt('')
16 | current_page = reader.getPage(5)
17 | print(current_page)
18 | print(current_page.extractText())
19 |
--------------------------------------------------------------------------------
/Day01-15/code/Day15/pillow1.py:
--------------------------------------------------------------------------------
1 | """
2 | 使用pillow操作图像
3 |
4 | Version: 0.1
5 | Author: 骆昊
6 | Date: 2018-03-26
7 | """
8 | from PIL import Image
9 |
10 | img = Image.open('./res/guido.jpg')
11 | print(img.size)
12 | print(img.format)
13 | print(img.format_description)
14 | img.save('./res/guido.png')
15 |
16 | img2 = Image.open('./res/guido.png')
17 | img3 = img2.crop((335, 435, 430, 615))
18 | for x in range(4):
19 | for y in range(5):
20 | img2.paste(img3, (95 * y , 180 * x))
21 | img2.resize((img.size[0] // 2, img.size[1] // 2))
22 | img2.rotate(90)
23 | img2.save('./res/guido2.png')
24 |
--------------------------------------------------------------------------------
/Day01-15/code/Day15/res/Docker入门教程.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day01-15/code/Day15/res/Docker入门教程.pdf
--------------------------------------------------------------------------------
/Day01-15/code/Day15/res/guido.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day01-15/code/Day15/res/guido.jpg
--------------------------------------------------------------------------------
/Day01-15/code/Day15/res/luohao.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day01-15/code/Day15/res/luohao.png
--------------------------------------------------------------------------------
/Day01-15/code/Day15/res/学生明细表.xlsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day01-15/code/Day15/res/学生明细表.xlsx
--------------------------------------------------------------------------------
/Day01-15/code/Day15/res/用函数还是用复杂的表达式.docx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day01-15/code/Day15/res/用函数还是用复杂的表达式.docx
--------------------------------------------------------------------------------
/Day01-15/code/Day15/word1.py:
--------------------------------------------------------------------------------
1 | """
2 | 创建Word文件
3 |
4 | Version: 0.1
5 | Author: 骆昊
6 | Date: 2018-03-26
7 | """
--------------------------------------------------------------------------------
/Day01-15/code/Day15/word2.py:
--------------------------------------------------------------------------------
1 | """
2 | 读取Word文件
3 |
4 | Version: 0.1
5 | Author: 骆昊
6 | Date: 2018-03-26
7 | """
8 |
9 | from docx import Document
10 |
11 | doc = Document('./res/用函数还是用复杂的表达式.docx')
12 | print(len(doc.paragraphs))
13 | print(doc.paragraphs[0].text)
14 | # print(doc.paragraphs[1].runs[0].text)
15 |
16 | content = []
17 | for para in doc.paragraphs:
18 | content.append(para.text)
19 | print(''.join(content))
20 |
--------------------------------------------------------------------------------
/Day01-15/res/TCP-IP-model.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day01-15/res/TCP-IP-model.png
--------------------------------------------------------------------------------
/Day01-15/res/after-browser.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day01-15/res/after-browser.jpg
--------------------------------------------------------------------------------
/Day01-15/res/arpanet.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day01-15/res/arpanet.png
--------------------------------------------------------------------------------
/Day01-15/res/ball-game.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day01-15/res/ball-game.png
--------------------------------------------------------------------------------
/Day01-15/res/ball.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day01-15/res/ball.png
--------------------------------------------------------------------------------
/Day01-15/res/before-browser.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day01-15/res/before-browser.jpg
--------------------------------------------------------------------------------
/Day01-15/res/browers.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day01-15/res/browers.jpg
--------------------------------------------------------------------------------
/Day01-15/res/browser-market-place.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day01-15/res/browser-market-place.jpeg
--------------------------------------------------------------------------------
/Day01-15/res/fibonacci-blocks.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day01-15/res/fibonacci-blocks.png
--------------------------------------------------------------------------------
/Day01-15/res/file-open-mode.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day01-15/res/file-open-mode.png
--------------------------------------------------------------------------------
/Day01-15/res/formula_1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day01-15/res/formula_1.png
--------------------------------------------------------------------------------
/Day01-15/res/formula_2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day01-15/res/formula_2.png
--------------------------------------------------------------------------------
/Day01-15/res/formula_3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day01-15/res/formula_3.png
--------------------------------------------------------------------------------
/Day01-15/res/formula_4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day01-15/res/formula_4.png
--------------------------------------------------------------------------------
/Day01-15/res/formula_5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day01-15/res/formula_5.png
--------------------------------------------------------------------------------
/Day01-15/res/formula_6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day01-15/res/formula_6.png
--------------------------------------------------------------------------------
/Day01-15/res/formula_7.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day01-15/res/formula_7.png
--------------------------------------------------------------------------------
/Day01-15/res/formula_8.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day01-15/res/formula_8.png
--------------------------------------------------------------------------------
/Day01-15/res/how-data-is-processed.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day01-15/res/how-data-is-processed.jpg
--------------------------------------------------------------------------------
/Day01-15/res/image-crop.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day01-15/res/image-crop.png
--------------------------------------------------------------------------------
/Day01-15/res/image-filter.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day01-15/res/image-filter.png
--------------------------------------------------------------------------------
/Day01-15/res/image-paste.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day01-15/res/image-paste.png
--------------------------------------------------------------------------------
/Day01-15/res/image-putpixel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day01-15/res/image-putpixel.png
--------------------------------------------------------------------------------
/Day01-15/res/image-rotate.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day01-15/res/image-rotate.png
--------------------------------------------------------------------------------
/Day01-15/res/image-show.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day01-15/res/image-show.png
--------------------------------------------------------------------------------
/Day01-15/res/image-thumbnail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day01-15/res/image-thumbnail.png
--------------------------------------------------------------------------------
/Day01-15/res/image-transpose.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day01-15/res/image-transpose.png
--------------------------------------------------------------------------------
/Day01-15/res/ipython-timeit.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day01-15/res/ipython-timeit.png
--------------------------------------------------------------------------------
/Day01-15/res/macos-monitor.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day01-15/res/macos-monitor.png
--------------------------------------------------------------------------------
/Day01-15/res/object-feature.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day01-15/res/object-feature.png
--------------------------------------------------------------------------------
/Day01-15/res/oop-zhihu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day01-15/res/oop-zhihu.png
--------------------------------------------------------------------------------
/Day01-15/res/osi_rm.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day01-15/res/osi_rm.gif
--------------------------------------------------------------------------------
/Day01-15/res/osimodel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day01-15/res/osimodel.png
--------------------------------------------------------------------------------
/Day01-15/res/python-idle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day01-15/res/python-idle.png
--------------------------------------------------------------------------------
/Day01-15/res/python-ipython.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day01-15/res/python-ipython.png
--------------------------------------------------------------------------------
/Day01-15/res/python-jupyter-1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day01-15/res/python-jupyter-1.png
--------------------------------------------------------------------------------
/Day01-15/res/python-jupyter-2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day01-15/res/python-jupyter-2.png
--------------------------------------------------------------------------------
/Day01-15/res/python-pycharm.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day01-15/res/python-pycharm.png
--------------------------------------------------------------------------------
/Day01-15/res/python-set.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day01-15/res/python-set.png
--------------------------------------------------------------------------------
/Day01-15/res/python-sublime.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day01-15/res/python-sublime.png
--------------------------------------------------------------------------------
/Day01-15/res/tcpipprotocols.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day01-15/res/tcpipprotocols.png
--------------------------------------------------------------------------------
/Day01-15/res/tel-start-number.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day01-15/res/tel-start-number.png
--------------------------------------------------------------------------------
/Day01-15/res/telnet.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day01-15/res/telnet.png
--------------------------------------------------------------------------------
/Day01-15/res/uml-components.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day01-15/res/uml-components.png
--------------------------------------------------------------------------------
/Day01-15/res/uml-example.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day01-15/res/uml-example.png
--------------------------------------------------------------------------------
/Day16-20/code/example11.py:
--------------------------------------------------------------------------------
1 | """
2 | 变量的作用域以及Python搜索变量的顺序
3 | LEGB: Local --> Embedded --> Global --> Built-in
4 | global - 声明或定义全局变量(要么直接使用现有的全局作用域的变量,要么定义一个变量放到全局作用域)
5 | nonlocal - 声明使用嵌套作用域的变量(如果嵌套作用域没有对应的变量直接报错)
6 | """
7 | x = 100
8 |
9 |
10 | def foo():
11 | global x
12 | x = 200
13 |
14 | def bar():
15 | x = 300
16 | print(x)
17 |
18 | bar()
19 | print(x)
20 |
21 |
22 | foo()
23 | print(x)
24 |
--------------------------------------------------------------------------------
/Day16-20/code/example13.py:
--------------------------------------------------------------------------------
1 | from example12 import EmployeeFactory
2 |
3 |
4 | def main():
5 | """主函数"""
6 | emps = [
7 | EmployeeFactory.create('M', '曹操'),
8 | EmployeeFactory.create('P', '荀彧', 120),
9 | EmployeeFactory.create('P', '郭嘉', 85),
10 | EmployeeFactory.create('S', '典韦', 123000),
11 | ]
12 | for emp in emps:
13 | print('%s: %.2f元' % (emp.name, emp.get_salary()))
14 |
15 |
16 | if __name__ == '__main__':
17 | main()
18 |
--------------------------------------------------------------------------------
/Day16-20/res/algorithm_complexity_1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day16-20/res/algorithm_complexity_1.png
--------------------------------------------------------------------------------
/Day16-20/res/algorithm_complexity_2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day16-20/res/algorithm_complexity_2.png
--------------------------------------------------------------------------------
/Day21-30/code/new/web1901/audio/test-audio.mp3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/code/new/web1901/audio/test-audio.mp3
--------------------------------------------------------------------------------
/Day21-30/code/new/web1901/audio/test-audio.ogg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/code/new/web1901/audio/test-audio.ogg
--------------------------------------------------------------------------------
/Day21-30/code/new/web1901/example_of_audio_video.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | 音视频
6 |
7 |
8 |
11 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/Day21-30/code/new/web1901/example_of_js_1.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | 猜数字
6 |
7 |
8 |
27 |
28 |
29 |
--------------------------------------------------------------------------------
/Day21-30/code/new/web1901/example_of_js_7.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
17 |
18 |
19 |
--------------------------------------------------------------------------------
/Day21-30/code/new/web1901/fonts/chunkfive.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/code/new/web1901/fonts/chunkfive.ttf
--------------------------------------------------------------------------------
/Day21-30/code/new/web1901/fonts/quicksand.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/code/new/web1901/fonts/quicksand.ttf
--------------------------------------------------------------------------------
/Day21-30/code/new/web1901/images/a1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/code/new/web1901/images/a1.jpg
--------------------------------------------------------------------------------
/Day21-30/code/new/web1901/images/a2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/code/new/web1901/images/a2.jpg
--------------------------------------------------------------------------------
/Day21-30/code/new/web1901/images/a3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/code/new/web1901/images/a3.jpg
--------------------------------------------------------------------------------
/Day21-30/code/new/web1901/images/add.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/code/new/web1901/images/add.gif
--------------------------------------------------------------------------------
/Day21-30/code/new/web1901/images/backdrop.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/code/new/web1901/images/backdrop.gif
--------------------------------------------------------------------------------
/Day21-30/code/new/web1901/images/bird.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/code/new/web1901/images/bird.gif
--------------------------------------------------------------------------------
/Day21-30/code/new/web1901/images/bok-choi.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/code/new/web1901/images/bok-choi.jpg
--------------------------------------------------------------------------------
/Day21-30/code/new/web1901/images/button-sprite.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/code/new/web1901/images/button-sprite.jpg
--------------------------------------------------------------------------------
/Day21-30/code/new/web1901/images/buttons.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/code/new/web1901/images/buttons.jpg
--------------------------------------------------------------------------------
/Day21-30/code/new/web1901/images/chocolate-islands.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/code/new/web1901/images/chocolate-islands.jpg
--------------------------------------------------------------------------------
/Day21-30/code/new/web1901/images/clavinet.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/code/new/web1901/images/clavinet.jpg
--------------------------------------------------------------------------------
/Day21-30/code/new/web1901/images/dark-wood.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/code/new/web1901/images/dark-wood.jpg
--------------------------------------------------------------------------------
/Day21-30/code/new/web1901/images/dots.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/code/new/web1901/images/dots.gif
--------------------------------------------------------------------------------
/Day21-30/code/new/web1901/images/email.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/code/new/web1901/images/email.png
--------------------------------------------------------------------------------
/Day21-30/code/new/web1901/images/header.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/code/new/web1901/images/header.gif
--------------------------------------------------------------------------------
/Day21-30/code/new/web1901/images/header.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/code/new/web1901/images/header.jpg
--------------------------------------------------------------------------------
/Day21-30/code/new/web1901/images/icon-plus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/code/new/web1901/images/icon-plus.png
--------------------------------------------------------------------------------
/Day21-30/code/new/web1901/images/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/code/new/web1901/images/icon.png
--------------------------------------------------------------------------------
/Day21-30/code/new/web1901/images/icons.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/code/new/web1901/images/icons.jpg
--------------------------------------------------------------------------------
/Day21-30/code/new/web1901/images/keys.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/code/new/web1901/images/keys.jpg
--------------------------------------------------------------------------------
/Day21-30/code/new/web1901/images/lemon-posset.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/code/new/web1901/images/lemon-posset.jpg
--------------------------------------------------------------------------------
/Day21-30/code/new/web1901/images/logo-1.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/code/new/web1901/images/logo-1.gif
--------------------------------------------------------------------------------
/Day21-30/code/new/web1901/images/logo-2.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/code/new/web1901/images/logo-2.gif
--------------------------------------------------------------------------------
/Day21-30/code/new/web1901/images/logo-3.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/code/new/web1901/images/logo-3.gif
--------------------------------------------------------------------------------
/Day21-30/code/new/web1901/images/logo.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/code/new/web1901/images/logo.gif
--------------------------------------------------------------------------------
/Day21-30/code/new/web1901/images/magnolia-large.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/code/new/web1901/images/magnolia-large.jpg
--------------------------------------------------------------------------------
/Day21-30/code/new/web1901/images/magnolia-medium.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/code/new/web1901/images/magnolia-medium.jpg
--------------------------------------------------------------------------------
/Day21-30/code/new/web1901/images/magnolia-small.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/code/new/web1901/images/magnolia-small.jpg
--------------------------------------------------------------------------------
/Day21-30/code/new/web1901/images/otters.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/code/new/web1901/images/otters.jpg
--------------------------------------------------------------------------------
/Day21-30/code/new/web1901/images/pattern.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/code/new/web1901/images/pattern.gif
--------------------------------------------------------------------------------
/Day21-30/code/new/web1901/images/picture-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/code/new/web1901/images/picture-1.jpg
--------------------------------------------------------------------------------
/Day21-30/code/new/web1901/images/picture-2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/code/new/web1901/images/picture-2.jpg
--------------------------------------------------------------------------------
/Day21-30/code/new/web1901/images/picture-3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/code/new/web1901/images/picture-3.jpg
--------------------------------------------------------------------------------
/Day21-30/code/new/web1901/images/print-01.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/code/new/web1901/images/print-01.jpg
--------------------------------------------------------------------------------
/Day21-30/code/new/web1901/images/print-02.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/code/new/web1901/images/print-02.jpg
--------------------------------------------------------------------------------
/Day21-30/code/new/web1901/images/print-03.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/code/new/web1901/images/print-03.jpg
--------------------------------------------------------------------------------
/Day21-30/code/new/web1901/images/print-04.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/code/new/web1901/images/print-04.jpg
--------------------------------------------------------------------------------
/Day21-30/code/new/web1901/images/print-05.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/code/new/web1901/images/print-05.jpg
--------------------------------------------------------------------------------
/Day21-30/code/new/web1901/images/print-06.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/code/new/web1901/images/print-06.jpg
--------------------------------------------------------------------------------
/Day21-30/code/new/web1901/images/puppy.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/code/new/web1901/images/puppy.jpg
--------------------------------------------------------------------------------
/Day21-30/code/new/web1901/images/python-logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/code/new/web1901/images/python-logo.png
--------------------------------------------------------------------------------
/Day21-30/code/new/web1901/images/quokka.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/code/new/web1901/images/quokka.jpg
--------------------------------------------------------------------------------
/Day21-30/code/new/web1901/images/rhodes.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/code/new/web1901/images/rhodes.jpg
--------------------------------------------------------------------------------
/Day21-30/code/new/web1901/images/roasted-brussel-sprouts.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/code/new/web1901/images/roasted-brussel-sprouts.jpg
--------------------------------------------------------------------------------
/Day21-30/code/new/web1901/images/shadow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/code/new/web1901/images/shadow.png
--------------------------------------------------------------------------------
/Day21-30/code/new/web1901/images/slide-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/code/new/web1901/images/slide-1.jpg
--------------------------------------------------------------------------------
/Day21-30/code/new/web1901/images/slide-2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/code/new/web1901/images/slide-2.jpg
--------------------------------------------------------------------------------
/Day21-30/code/new/web1901/images/slide-3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/code/new/web1901/images/slide-3.jpg
--------------------------------------------------------------------------------
/Day21-30/code/new/web1901/images/slide-4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/code/new/web1901/images/slide-4.jpg
--------------------------------------------------------------------------------
/Day21-30/code/new/web1901/images/star.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/code/new/web1901/images/star.png
--------------------------------------------------------------------------------
/Day21-30/code/new/web1901/images/subscribe.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/code/new/web1901/images/subscribe.jpg
--------------------------------------------------------------------------------
/Day21-30/code/new/web1901/images/teriyaki.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/code/new/web1901/images/teriyaki.jpg
--------------------------------------------------------------------------------
/Day21-30/code/new/web1901/images/thumb-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/code/new/web1901/images/thumb-1.jpg
--------------------------------------------------------------------------------
/Day21-30/code/new/web1901/images/thumb-2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/code/new/web1901/images/thumb-2.jpg
--------------------------------------------------------------------------------
/Day21-30/code/new/web1901/images/thumb-3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/code/new/web1901/images/thumb-3.jpg
--------------------------------------------------------------------------------
/Day21-30/code/new/web1901/images/tim.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/code/new/web1901/images/tim.png
--------------------------------------------------------------------------------
/Day21-30/code/new/web1901/images/title.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/code/new/web1901/images/title.gif
--------------------------------------------------------------------------------
/Day21-30/code/new/web1901/images/tulip.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/code/new/web1901/images/tulip.gif
--------------------------------------------------------------------------------
/Day21-30/code/new/web1901/images/twitter.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/code/new/web1901/images/twitter.png
--------------------------------------------------------------------------------
/Day21-30/code/new/web1901/images/web.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/code/new/web1901/images/web.png
--------------------------------------------------------------------------------
/Day21-30/code/new/web1901/images/wurlitzer.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/code/new/web1901/images/wurlitzer.jpg
--------------------------------------------------------------------------------
/Day21-30/code/new/web1901/images/zucchini-cake.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/code/new/web1901/images/zucchini-cake.jpg
--------------------------------------------------------------------------------
/Day21-30/code/new/web1901/js/hello.js:
--------------------------------------------------------------------------------
1 | function randomColor(opacity=1) {
2 | let r = parseInt(Math.random() * 256)
3 | let g = parseInt(Math.random() * 256)
4 | let b = parseInt(Math.random() * 256)
5 | return `rgba(${r}, ${g}, ${b}, ${opacity})`
6 | }
7 |
--------------------------------------------------------------------------------
/Day21-30/code/new/web1901/video/puppy.flv:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/code/new/web1901/video/puppy.flv
--------------------------------------------------------------------------------
/Day21-30/code/new/web1901/video/puppy.mp4:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/code/new/web1901/video/puppy.mp4
--------------------------------------------------------------------------------
/Day21-30/code/new/web1901/video/puppy.webm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/code/new/web1901/video/puppy.webm
--------------------------------------------------------------------------------
/Day21-30/code/old/html+css/qq_link.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
14 |
19 |
20 |
--------------------------------------------------------------------------------
/Day21-30/code/old/javascript/img/a1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/code/old/javascript/img/a1.jpg
--------------------------------------------------------------------------------
/Day21-30/code/old/javascript/img/a2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/code/old/javascript/img/a2.jpg
--------------------------------------------------------------------------------
/Day21-30/code/old/javascript/img/a3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/code/old/javascript/img/a3.jpg
--------------------------------------------------------------------------------
/Day21-30/code/old/javascript/img/picture-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/code/old/javascript/img/picture-1.jpg
--------------------------------------------------------------------------------
/Day21-30/code/old/javascript/img/picture-2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/code/old/javascript/img/picture-2.jpg
--------------------------------------------------------------------------------
/Day21-30/code/old/javascript/img/picture-3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/code/old/javascript/img/picture-3.jpg
--------------------------------------------------------------------------------
/Day21-30/code/old/javascript/img/slide-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/code/old/javascript/img/slide-1.jpg
--------------------------------------------------------------------------------
/Day21-30/code/old/javascript/img/slide-2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/code/old/javascript/img/slide-2.jpg
--------------------------------------------------------------------------------
/Day21-30/code/old/javascript/img/slide-3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/code/old/javascript/img/slide-3.jpg
--------------------------------------------------------------------------------
/Day21-30/code/old/javascript/img/slide-4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/code/old/javascript/img/slide-4.jpg
--------------------------------------------------------------------------------
/Day21-30/code/old/javascript/img/thumb-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/code/old/javascript/img/thumb-1.jpg
--------------------------------------------------------------------------------
/Day21-30/code/old/javascript/img/thumb-2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/code/old/javascript/img/thumb-2.jpg
--------------------------------------------------------------------------------
/Day21-30/code/old/javascript/img/thumb-3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/code/old/javascript/img/thumb-3.jpg
--------------------------------------------------------------------------------
/Day21-30/code/old/javascript/js/mylib.js:
--------------------------------------------------------------------------------
1 | function randomColor() {
2 | var r = parseInt(Math.random() * 128 + 128);
3 | var g = parseInt(Math.random() * 128 + 128);
4 | var b = parseInt(Math.random() * 128 + 128);
5 | return 'rgb(' + r + ', ' + g + ', ' + b + ')';
6 | }
--------------------------------------------------------------------------------
/Day21-30/code/old/javascript/message.json:
--------------------------------------------------------------------------------
1 | {
2 | "from": "骆昊",
3 | "to": "王大锤",
4 | "content": "今天晚上你请我吃饭!"
5 | }
--------------------------------------------------------------------------------
/Day21-30/code/old/javascript/message.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 骆昊
4 | 王大锤
5 | 今天晚上你请我吃饭!
6 |
--------------------------------------------------------------------------------
/Day21-30/code/垃圾分类查询/images/harmful-waste.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/code/垃圾分类查询/images/harmful-waste.png
--------------------------------------------------------------------------------
/Day21-30/code/垃圾分类查询/images/kitchen-waste.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/code/垃圾分类查询/images/kitchen-waste.png
--------------------------------------------------------------------------------
/Day21-30/code/垃圾分类查询/images/other-waste.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/code/垃圾分类查询/images/other-waste.png
--------------------------------------------------------------------------------
/Day21-30/code/垃圾分类查询/images/recyclable.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/code/垃圾分类查询/images/recyclable.png
--------------------------------------------------------------------------------
/Day21-30/res/baidu_echarts.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/res/baidu_echarts.png
--------------------------------------------------------------------------------
/Day21-30/res/bootstrap-layoutit.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/res/bootstrap-layoutit.png
--------------------------------------------------------------------------------
/Day21-30/res/字体样式.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/res/字体样式.png
--------------------------------------------------------------------------------
/Day21-30/res/字符实体.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/res/字符实体.png
--------------------------------------------------------------------------------
/Day21-30/res/客户端对字体文件的支持.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/res/客户端对字体文件的支持.png
--------------------------------------------------------------------------------
/Day21-30/res/尺寸单位.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/res/尺寸单位.png
--------------------------------------------------------------------------------
/Day21-30/res/属性选择器.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/res/属性选择器.png
--------------------------------------------------------------------------------
/Day21-30/res/常用选择器.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/res/常用选择器.png
--------------------------------------------------------------------------------
/Day21-30/res/开始标签.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/res/开始标签.png
--------------------------------------------------------------------------------
/Day21-30/res/标签属性.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/res/标签属性.png
--------------------------------------------------------------------------------
/Day21-30/res/样式属性.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/res/样式属性.png
--------------------------------------------------------------------------------
/Day21-30/res/盒子模型.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/res/盒子模型.png
--------------------------------------------------------------------------------
/Day21-30/res/相对路径.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/res/相对路径.png
--------------------------------------------------------------------------------
/Day21-30/res/经典布局-1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/res/经典布局-1.png
--------------------------------------------------------------------------------
/Day21-30/res/经典布局-2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/res/经典布局-2.png
--------------------------------------------------------------------------------
/Day21-30/res/结束标签.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/res/结束标签.png
--------------------------------------------------------------------------------
/Day21-30/res/网站地图.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/res/网站地图.png
--------------------------------------------------------------------------------
/Day21-30/res/衬线字体+非衬线字体+等宽字体.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/res/衬线字体+非衬线字体+等宽字体.png
--------------------------------------------------------------------------------
/Day21-30/res/选择器语法.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day21-30/res/选择器语法.png
--------------------------------------------------------------------------------
/Day31-35/code/dayofyear.py:
--------------------------------------------------------------------------------
1 | import sys
2 | import mycal
3 |
4 |
5 | def main():
6 | if len(sys.argv) != 4:
7 | print('Not enough arguments')
8 | return
9 | year = int(sys.argv[1])
10 | month = int(sys.argv[2])
11 | day = int(sys.argv[3])
12 | total = 0
13 | for m in range(1, month):
14 | total += mycal.get_days(year, m)
15 | total += day
16 | print(f'{year}年{month}月{day}日是{year}年的第{total}天')
17 |
18 |
19 | if __name__ == '__main__':
20 | main()
21 |
22 |
--------------------------------------------------------------------------------
/Day31-35/code/guess.py:
--------------------------------------------------------------------------------
1 | #!/usr/bin/python3
2 | # coding: utf-8
3 | from random import randint
4 |
5 |
6 | def main():
7 | answer = randint(1, 100)
8 | while True:
9 | number = int(input('请输入: '))
10 | if number < answer:
11 | print('大一点')
12 | elif number > answer:
13 | print('小一点')
14 | else:
15 | print('恭喜你猜对了!')
16 | break
17 |
18 |
19 | if __name__ == '__main__':
20 | main()
21 |
--------------------------------------------------------------------------------
/Day31-35/code/josephu.py:
--------------------------------------------------------------------------------
1 | def main():
2 | persons = [True] * 30
3 | counter = 0
4 | index = 0
5 | number = 0
6 | while counter < 15:
7 | if persons[index]:
8 | number += 1
9 | if number == 9:
10 | persons[index] = False
11 | number = 0
12 | counter += 1
13 | index += 1
14 | index %= len(persons)
15 | for person in persons:
16 | print('基' if person else '非', end='')
17 | print()
18 |
19 |
20 | if __name__ == '__main__':
21 | main()
22 |
23 |
--------------------------------------------------------------------------------
/Day31-35/res/andrew.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day31-35/res/andrew.jpg
--------------------------------------------------------------------------------
/Day31-35/res/dmr.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day31-35/res/dmr.png
--------------------------------------------------------------------------------
/Day31-35/res/file-mode.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day31-35/res/file-mode.png
--------------------------------------------------------------------------------
/Day31-35/res/history-of-unix.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day31-35/res/history-of-unix.png
--------------------------------------------------------------------------------
/Day31-35/res/ibm-col80-punched-card.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day31-35/res/ibm-col80-punched-card.png
--------------------------------------------------------------------------------
/Day31-35/res/ken-and-dennis-pdp-11.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day31-35/res/ken-and-dennis-pdp-11.png
--------------------------------------------------------------------------------
/Day31-35/res/ken_old.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day31-35/res/ken_old.png
--------------------------------------------------------------------------------
/Day31-35/res/ken_young.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day31-35/res/ken_young.jpg
--------------------------------------------------------------------------------
/Day31-35/res/linus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day31-35/res/linus.png
--------------------------------------------------------------------------------
/Day31-35/res/linux-network-config.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day31-35/res/linux-network-config.png
--------------------------------------------------------------------------------
/Day31-35/res/pdp-11.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day31-35/res/pdp-11.jpg
--------------------------------------------------------------------------------
/Day31-35/res/pdp-7.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day31-35/res/pdp-7.png
--------------------------------------------------------------------------------
/Day31-35/res/vim-diff.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day31-35/res/vim-diff.png
--------------------------------------------------------------------------------
/Day31-35/res/vim-macro.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day31-35/res/vim-macro.png
--------------------------------------------------------------------------------
/Day31-35/res/vim-multi-window.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day31-35/res/vim-multi-window.png
--------------------------------------------------------------------------------
/Day36-40/code/message/内部短消息系统.txt:
--------------------------------------------------------------------------------
1 | 内部短消息系统(私信系统)
2 |
3 | 1 登录
4 | 1.1 发送短消息
5 | 1.2 查看未读消息
6 | 1.2.1 读取消息
7 | 1.2.2 标记已读
8 | 1.2.3 返回上级
9 | 1.3 查看所有消息
10 | 1.3.1 读取消息
11 | 1.3.2 删除消息
12 | 1.3.3 返回上级
13 | 1.4 清除所有消息
14 | 1.5 注销
15 | 2 注册
16 | 2.1 填写信息注册
17 | 2.2 返回上级
18 | 3 退出
19 |
20 | 用户 (用户名, 口令, 最后登录时间)
21 | 短消息 (编号, 发送者, 接收者, 标题, 内容, 发送时间, 是否读取, 已删除)
22 |
23 |
--------------------------------------------------------------------------------
/Day36-40/res/conceptual_model.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day36-40/res/conceptual_model.png
--------------------------------------------------------------------------------
/Day36-40/res/er_diagram.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day36-40/res/er_diagram.png
--------------------------------------------------------------------------------
/Day36-40/res/redis-aof.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day36-40/res/redis-aof.png
--------------------------------------------------------------------------------
/Day36-40/res/redis-bind-and-port.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day36-40/res/redis-bind-and-port.png
--------------------------------------------------------------------------------
/Day36-40/res/redis-data-types.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day36-40/res/redis-data-types.png
--------------------------------------------------------------------------------
/Day36-40/res/redis-databases.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day36-40/res/redis-databases.png
--------------------------------------------------------------------------------
/Day36-40/res/redis-hash.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day36-40/res/redis-hash.png
--------------------------------------------------------------------------------
/Day36-40/res/redis-list.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day36-40/res/redis-list.png
--------------------------------------------------------------------------------
/Day36-40/res/redis-rdb-1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day36-40/res/redis-rdb-1.png
--------------------------------------------------------------------------------
/Day36-40/res/redis-rdb-3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day36-40/res/redis-rdb-3.png
--------------------------------------------------------------------------------
/Day36-40/res/redis-replication.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day36-40/res/redis-replication.png
--------------------------------------------------------------------------------
/Day36-40/res/redis-security.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day36-40/res/redis-security.png
--------------------------------------------------------------------------------
/Day36-40/res/redis-set.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day36-40/res/redis-set.png
--------------------------------------------------------------------------------
/Day36-40/res/redis-slow-logs.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day36-40/res/redis-slow-logs.png
--------------------------------------------------------------------------------
/Day36-40/res/redis-string.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day36-40/res/redis-string.png
--------------------------------------------------------------------------------
/Day36-40/res/redis-zset.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day36-40/res/redis-zset.png
--------------------------------------------------------------------------------
/Day41-55/53.异步任务和定时任务.md:
--------------------------------------------------------------------------------
1 | ## 异步任务和定时任务
2 |
3 | 在Web应用中,如果一个请求执行了耗时间的操作或者该请求的执行时间无法确定,而且对于用户来说只需要知道服务器接收了他的请求,并不需要马上得到请求的执行结果,这样的操作我们就应该对其进行异步化处理。如果说**使用缓存是优化网站性能的第一要义**,那么将耗时间或执行时间不确定的任务**异步化则是网站性能优化的第二要义**,简单的说就是**能推迟做的事情都不要马上做**。
4 |
5 | 上一章节中讲到的发短信和上传文件到云存储为例,这两个操作前者属于时间不确定的操作(因为作为调用者,我们不能确定三方平台响应的时间),后者属于耗时间的操作(如果文件较大或者三方平台不稳定,都可能导致上传的时间较长),很显然,这两个操作都可以做异步化处理。
6 |
7 | 在Python项目中实现异步化处理可以使用多线程或借助三方库Celery来完成。
8 |
9 | ### 使用Celery实现异步化
10 |
11 |
12 |
13 | ### 使用多线程实现异步化
14 |
15 |
--------------------------------------------------------------------------------
/Day41-55/54.单元测试.md:
--------------------------------------------------------------------------------
1 | ## 单元测试
2 |
3 | 请各位读者移步到[《使用Django开发商业项目》](../Day91-100/95.使用Django开发商业项目.md)一文。
4 |
5 |
--------------------------------------------------------------------------------
/Day41-55/55.项目上线.md:
--------------------------------------------------------------------------------
1 | ## 项目上线
2 |
3 | 请各位读者移步到[《项目部署上线和性能调优》](../Day91-100/98.项目部署上线和性能调优.md)一文。
4 |
5 |
--------------------------------------------------------------------------------
/Day41-55/code/hellodjango/first/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day41-55/code/hellodjango/first/__init__.py
--------------------------------------------------------------------------------
/Day41-55/code/hellodjango/first/admin.py:
--------------------------------------------------------------------------------
1 | from django.contrib import admin
2 |
3 | # Register your models here.
4 |
--------------------------------------------------------------------------------
/Day41-55/code/hellodjango/first/apps.py:
--------------------------------------------------------------------------------
1 | from django.apps import AppConfig
2 |
3 |
4 | class FirstConfig(AppConfig):
5 | name = 'first'
6 |
--------------------------------------------------------------------------------
/Day41-55/code/hellodjango/first/migrations/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day41-55/code/hellodjango/first/migrations/__init__.py
--------------------------------------------------------------------------------
/Day41-55/code/hellodjango/first/models.py:
--------------------------------------------------------------------------------
1 | from django.db import models
2 |
3 | # Create your models here.
4 |
--------------------------------------------------------------------------------
/Day41-55/code/hellodjango/first/tests.py:
--------------------------------------------------------------------------------
1 | from django.test import TestCase
2 |
3 | # Create your tests here.
4 |
--------------------------------------------------------------------------------
/Day41-55/code/hellodjango/first/views.py:
--------------------------------------------------------------------------------
1 | from random import sample
2 |
3 | from django.shortcuts import render
4 |
5 |
6 | def show_index(request):
7 | fruits = [
8 | 'Apple', 'Orange', 'Pitaya', 'Durian', 'Waxberry', 'Blueberry',
9 | 'Grape', 'Peach', 'Pear', 'Banana', 'Watermelon', 'Mango'
10 | ]
11 | return render(request, 'index.html', {'fruits': sample(fruits, 3)})
12 |
--------------------------------------------------------------------------------
/Day41-55/code/hellodjango/hellodjango/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day41-55/code/hellodjango/hellodjango/__init__.py
--------------------------------------------------------------------------------
/Day41-55/code/hellodjango/hellodjango/wsgi.py:
--------------------------------------------------------------------------------
1 | """
2 | WSGI config for hellodjango project.
3 |
4 | It exposes the WSGI callable as a module-level variable named ``application``.
5 |
6 | For more information on this file, see
7 | https://docs.djangoproject.com/en/2.2/howto/deployment/wsgi/
8 | """
9 |
10 | import os
11 |
12 | from django.core.wsgi import get_wsgi_application
13 |
14 | os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'hellodjango.settings')
15 |
16 | application = get_wsgi_application()
17 |
--------------------------------------------------------------------------------
/Day41-55/code/hellodjango/templates/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | 首页
6 |
11 |
12 |
13 | 今天推荐的水果是:
14 |
15 |
16 | {% for fruit in fruits %}
17 | - {{ fruit }}
18 | {% endfor %}
19 |
20 |
21 |
--------------------------------------------------------------------------------
/Day41-55/res/CSRF.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day41-55/res/CSRF.png
--------------------------------------------------------------------------------
/Day41-55/res/Django-Flowchart.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day41-55/res/Django-Flowchart.png
--------------------------------------------------------------------------------
/Day41-55/res/Django-MTV.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day41-55/res/Django-MTV.png
--------------------------------------------------------------------------------
/Day41-55/res/asynchronous-web-request.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day41-55/res/asynchronous-web-request.png
--------------------------------------------------------------------------------
/Day41-55/res/captcha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day41-55/res/captcha.png
--------------------------------------------------------------------------------
/Day41-55/res/cookie_xstorage_indexeddb.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day41-55/res/cookie_xstorage_indexeddb.png
--------------------------------------------------------------------------------
/Day41-55/res/csrf-simple.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day41-55/res/csrf-simple.png
--------------------------------------------------------------------------------
/Day41-55/res/debug-toolbar.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day41-55/res/debug-toolbar.png
--------------------------------------------------------------------------------
/Day41-55/res/django-admin-add-model.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day41-55/res/django-admin-add-model.png
--------------------------------------------------------------------------------
/Day41-55/res/django-admin-apps.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day41-55/res/django-admin-apps.png
--------------------------------------------------------------------------------
/Day41-55/res/django-admin-delete-update-model.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day41-55/res/django-admin-delete-update-model.png
--------------------------------------------------------------------------------
/Day41-55/res/django-admin-login.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day41-55/res/django-admin-login.png
--------------------------------------------------------------------------------
/Day41-55/res/django-admin-models.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day41-55/res/django-admin-models.png
--------------------------------------------------------------------------------
/Day41-55/res/django-admin-view-models-subject.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day41-55/res/django-admin-view-models-subject.png
--------------------------------------------------------------------------------
/Day41-55/res/django-admin-view-models-teacher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day41-55/res/django-admin-view-models-teacher.png
--------------------------------------------------------------------------------
/Day41-55/res/django-admin-view-models.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day41-55/res/django-admin-view-models.png
--------------------------------------------------------------------------------
/Day41-55/res/django-index-1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day41-55/res/django-index-1.png
--------------------------------------------------------------------------------
/Day41-55/res/django-index-2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day41-55/res/django-index-2.png
--------------------------------------------------------------------------------
/Day41-55/res/django-middleware.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day41-55/res/django-middleware.png
--------------------------------------------------------------------------------
/Day41-55/res/drf-app.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day41-55/res/drf-app.png
--------------------------------------------------------------------------------
/Day41-55/res/echarts_bar_graph.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day41-55/res/echarts_bar_graph.png
--------------------------------------------------------------------------------
/Day41-55/res/http-request.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day41-55/res/http-request.png
--------------------------------------------------------------------------------
/Day41-55/res/http-response.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day41-55/res/http-response.png
--------------------------------------------------------------------------------
/Day41-55/res/json-web-token.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day41-55/res/json-web-token.png
--------------------------------------------------------------------------------
/Day41-55/res/luosimao-pay-onlinebuy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day41-55/res/luosimao-pay-onlinebuy.png
--------------------------------------------------------------------------------
/Day41-55/res/luosimao-sms-apikey.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day41-55/res/luosimao-sms-apikey.png
--------------------------------------------------------------------------------
/Day41-55/res/luosimao-sms-signature.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day41-55/res/luosimao-sms-signature.png
--------------------------------------------------------------------------------
/Day41-55/res/luosimao-sms-whitelist.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day41-55/res/luosimao-sms-whitelist.png
--------------------------------------------------------------------------------
/Day41-55/res/mvc.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day41-55/res/mvc.png
--------------------------------------------------------------------------------
/Day41-55/res/pycharm-django-project.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day41-55/res/pycharm-django-project.png
--------------------------------------------------------------------------------
/Day41-55/res/pycharm-django-server.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day41-55/res/pycharm-django-server.png
--------------------------------------------------------------------------------
/Day41-55/res/pycharm-django-static.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day41-55/res/pycharm-django-static.png
--------------------------------------------------------------------------------
/Day41-55/res/pycharm-django-template.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day41-55/res/pycharm-django-template.png
--------------------------------------------------------------------------------
/Day41-55/res/pycharm-django-virtual-environment.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day41-55/res/pycharm-django-virtual-environment.png
--------------------------------------------------------------------------------
/Day41-55/res/pycharm-install-django.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day41-55/res/pycharm-install-django.png
--------------------------------------------------------------------------------
/Day41-55/res/pycharm-python-manage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day41-55/res/pycharm-python-manage.png
--------------------------------------------------------------------------------
/Day41-55/res/pycharm-vote-project.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day41-55/res/pycharm-vote-project.png
--------------------------------------------------------------------------------
/Day41-55/res/qiniu-document-python.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day41-55/res/qiniu-document-python.png
--------------------------------------------------------------------------------
/Day41-55/res/qiniu-file-management.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day41-55/res/qiniu-file-management.png
--------------------------------------------------------------------------------
/Day41-55/res/qiniu-manage-console.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day41-55/res/qiniu-manage-console.png
--------------------------------------------------------------------------------
/Day41-55/res/qiniu-secretkey-management.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day41-55/res/qiniu-secretkey-management.png
--------------------------------------------------------------------------------
/Day41-55/res/qiniu-storage-create.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day41-55/res/qiniu-storage-create.png
--------------------------------------------------------------------------------
/Day41-55/res/qiniu-storage-service.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day41-55/res/qiniu-storage-service.png
--------------------------------------------------------------------------------
/Day41-55/res/redis-cache-service.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day41-55/res/redis-cache-service.png
--------------------------------------------------------------------------------
/Day41-55/res/sessionid_from_cookie.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day41-55/res/sessionid_from_cookie.png
--------------------------------------------------------------------------------
/Day41-55/res/synchronous-web-request.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day41-55/res/synchronous-web-request.png
--------------------------------------------------------------------------------
/Day41-55/res/web-application.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day41-55/res/web-application.png
--------------------------------------------------------------------------------
/Day56-60/res/QQ20201127-180608@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day56-60/res/QQ20201127-180608@2x.png
--------------------------------------------------------------------------------
/Day56-60/res/QQ20201127-180630@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day56-60/res/QQ20201127-180630@2x.png
--------------------------------------------------------------------------------
/Day56-60/res/QQ20201127-180711@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day56-60/res/QQ20201127-180711@2x.png
--------------------------------------------------------------------------------
/Day56-60/res/QQ20201127-180820@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day56-60/res/QQ20201127-180820@2x.png
--------------------------------------------------------------------------------
/Day56-60/res/QQ20201127-180844@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day56-60/res/QQ20201127-180844@2x.png
--------------------------------------------------------------------------------
/Day56-60/res/first-demo-docs.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day56-60/res/first-demo-docs.png
--------------------------------------------------------------------------------
/Day56-60/res/run-first-demo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day56-60/res/run-first-demo.png
--------------------------------------------------------------------------------
/Day61-65/res/api-image360.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day61-65/res/api-image360.png
--------------------------------------------------------------------------------
/Day61-65/res/baidu-search-taobao.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day61-65/res/baidu-search-taobao.png
--------------------------------------------------------------------------------
/Day61-65/res/chrome-developer-tools.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day61-65/res/chrome-developer-tools.png
--------------------------------------------------------------------------------
/Day61-65/res/crawler-workflow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day61-65/res/crawler-workflow.png
--------------------------------------------------------------------------------
/Day61-65/res/douban-xpath.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day61-65/res/douban-xpath.png
--------------------------------------------------------------------------------
/Day61-65/res/http-request.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day61-65/res/http-request.png
--------------------------------------------------------------------------------
/Day61-65/res/http-response.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day61-65/res/http-response.png
--------------------------------------------------------------------------------
/Day61-65/res/image360-website.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day61-65/res/image360-website.png
--------------------------------------------------------------------------------
/Day61-65/res/scrapy-architecture.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day61-65/res/scrapy-architecture.png
--------------------------------------------------------------------------------
/Day66-80/code/data/2020年销售数据.xlsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/code/data/2020年销售数据.xlsx
--------------------------------------------------------------------------------
/Day66-80/code/data/2022年股票数据.xlsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/code/data/2022年股票数据.xlsx
--------------------------------------------------------------------------------
/Day66-80/res/20220501172802.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/20220501172802.png
--------------------------------------------------------------------------------
/Day66-80/res/20220501173034.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/20220501173034.png
--------------------------------------------------------------------------------
/Day66-80/res/20220501173344.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/20220501173344.png
--------------------------------------------------------------------------------
/Day66-80/res/20220501173446.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/20220501173446.png
--------------------------------------------------------------------------------
/Day66-80/res/20220501173557.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/20220501173557.png
--------------------------------------------------------------------------------
/Day66-80/res/20220501173645.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/20220501173645.png
--------------------------------------------------------------------------------
/Day66-80/res/20220502094128.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/20220502094128.png
--------------------------------------------------------------------------------
/Day66-80/res/20220502095949.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/20220502095949.png
--------------------------------------------------------------------------------
/Day66-80/res/20220502115005.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/20220502115005.png
--------------------------------------------------------------------------------
/Day66-80/res/20220502115531.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/20220502115531.png
--------------------------------------------------------------------------------
/Day66-80/res/20220502120236.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/20220502120236.png
--------------------------------------------------------------------------------
/Day66-80/res/20220502120749.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/20220502120749.png
--------------------------------------------------------------------------------
/Day66-80/res/20220502121226.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/20220502121226.png
--------------------------------------------------------------------------------
/Day66-80/res/20220502121656.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/20220502121656.png
--------------------------------------------------------------------------------
/Day66-80/res/20220502122106.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/20220502122106.png
--------------------------------------------------------------------------------
/Day66-80/res/20220502122144.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/20220502122144.png
--------------------------------------------------------------------------------
/Day66-80/res/3d_surface_chart.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/3d_surface_chart.png
--------------------------------------------------------------------------------
/Day66-80/res/3d_surface_chart_qt.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/3d_surface_chart_qt.png
--------------------------------------------------------------------------------
/Day66-80/res/3sigma.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/3sigma.png
--------------------------------------------------------------------------------
/Day66-80/res/3sigma_rule.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/3sigma_rule.jpg
--------------------------------------------------------------------------------
/Day66-80/res/JupyterLab_1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/JupyterLab_1.png
--------------------------------------------------------------------------------
/Day66-80/res/JupyterLab_2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/JupyterLab_2.png
--------------------------------------------------------------------------------
/Day66-80/res/JupyterLab_3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/JupyterLab_3.png
--------------------------------------------------------------------------------
/Day66-80/res/JupyterLab_4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/JupyterLab_4.png
--------------------------------------------------------------------------------
/Day66-80/res/JupyterLab_5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/JupyterLab_5.png
--------------------------------------------------------------------------------
/Day66-80/res/Parallelogramme.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/Parallelogramme.jpeg
--------------------------------------------------------------------------------
/Day66-80/res/anaconda_navigator.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/anaconda_navigator.png
--------------------------------------------------------------------------------
/Day66-80/res/baidu_double_MA.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/baidu_double_MA.png
--------------------------------------------------------------------------------
/Day66-80/res/baidu_stock.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/baidu_stock.png
--------------------------------------------------------------------------------
/Day66-80/res/baidu_stock_asfreq.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/baidu_stock_asfreq.png
--------------------------------------------------------------------------------
/Day66-80/res/baidu_stock_asfreq_ffill.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/baidu_stock_asfreq_ffill.png
--------------------------------------------------------------------------------
/Day66-80/res/baidu_stock_ma5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/baidu_stock_ma5.png
--------------------------------------------------------------------------------
/Day66-80/res/baidu_stock_resample.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/baidu_stock_resample.png
--------------------------------------------------------------------------------
/Day66-80/res/baidu_stock_resample_agg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/baidu_stock_resample_agg.png
--------------------------------------------------------------------------------
/Day66-80/res/baidu_stock_tz_convert.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/baidu_stock_tz_convert.png
--------------------------------------------------------------------------------
/Day66-80/res/baidu_stock_tz_localize.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/baidu_stock_tz_localize.png
--------------------------------------------------------------------------------
/Day66-80/res/boston_house_price.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/boston_house_price.png
--------------------------------------------------------------------------------
/Day66-80/res/boston_house_price_features.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/boston_house_price_features.png
--------------------------------------------------------------------------------
/Day66-80/res/boston_person_correlation.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/boston_person_correlation.png
--------------------------------------------------------------------------------
/Day66-80/res/boston_spearman_correlation.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/boston_spearman_correlation.png
--------------------------------------------------------------------------------
/Day66-80/res/box_plot_1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/box_plot_1.png
--------------------------------------------------------------------------------
/Day66-80/res/box_plot_2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/box_plot_2.png
--------------------------------------------------------------------------------
/Day66-80/res/broadcast-1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/broadcast-1.png
--------------------------------------------------------------------------------
/Day66-80/res/broadcast-2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/broadcast-2.png
--------------------------------------------------------------------------------
/Day66-80/res/broadcast-3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/broadcast-3.png
--------------------------------------------------------------------------------
/Day66-80/res/bubble_chart.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/bubble_chart.png
--------------------------------------------------------------------------------
/Day66-80/res/choose_your_chart.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/choose_your_chart.png
--------------------------------------------------------------------------------
/Day66-80/res/connection-style.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/connection-style.png
--------------------------------------------------------------------------------
/Day66-80/res/create_ndarray_1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/create_ndarray_1.png
--------------------------------------------------------------------------------
/Day66-80/res/create_ndarray_2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/create_ndarray_2.png
--------------------------------------------------------------------------------
/Day66-80/res/data_science.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/data_science.png
--------------------------------------------------------------------------------
/Day66-80/res/dataframe_methods.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/dataframe_methods.png
--------------------------------------------------------------------------------
/Day66-80/res/dataframe_operators_1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/dataframe_operators_1.png
--------------------------------------------------------------------------------
/Day66-80/res/dataframe_operators_2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/dataframe_operators_2.png
--------------------------------------------------------------------------------
/Day66-80/res/download-anaconda.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/download-anaconda.png
--------------------------------------------------------------------------------
/Day66-80/res/dtype.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/dtype.jpg
--------------------------------------------------------------------------------
/Day66-80/res/function_overview_8_0.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/function_overview_8_0.png
--------------------------------------------------------------------------------
/Day66-80/res/guido_slice_1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/guido_slice_1.png
--------------------------------------------------------------------------------
/Day66-80/res/guido_slice_2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/guido_slice_2.png
--------------------------------------------------------------------------------
/Day66-80/res/guido_slice_3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/guido_slice_3.png
--------------------------------------------------------------------------------
/Day66-80/res/guido_slice_4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/guido_slice_4.png
--------------------------------------------------------------------------------
/Day66-80/res/guido_slice_5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/guido_slice_5.png
--------------------------------------------------------------------------------
/Day66-80/res/hist_count.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/hist_count.png
--------------------------------------------------------------------------------
/Day66-80/res/hist_cumulative.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/hist_cumulative.png
--------------------------------------------------------------------------------
/Day66-80/res/in_out_regression_result.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/in_out_regression_result.png
--------------------------------------------------------------------------------
/Day66-80/res/in_out_scatter_plot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/in_out_scatter_plot.png
--------------------------------------------------------------------------------
/Day66-80/res/linalg_functions_1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/linalg_functions_1.png
--------------------------------------------------------------------------------
/Day66-80/res/linalg_functions_2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/linalg_functions_2.png
--------------------------------------------------------------------------------
/Day66-80/res/linear_transformation.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/linear_transformation.png
--------------------------------------------------------------------------------
/Day66-80/res/load_data_functions_1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/load_data_functions_1.png
--------------------------------------------------------------------------------
/Day66-80/res/load_data_functions_2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/load_data_functions_2.png
--------------------------------------------------------------------------------
/Day66-80/res/matrix_multiply.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/matrix_multiply.png
--------------------------------------------------------------------------------
/Day66-80/res/matrix_operation.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/matrix_operation.png
--------------------------------------------------------------------------------
/Day66-80/res/ndarray-dtype.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/ndarray-dtype.png
--------------------------------------------------------------------------------
/Day66-80/res/ndarray-index.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/ndarray-index.png
--------------------------------------------------------------------------------
/Day66-80/res/ndarray-slice.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/ndarray-slice.png
--------------------------------------------------------------------------------
/Day66-80/res/ndarray_methods_1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/ndarray_methods_1.png
--------------------------------------------------------------------------------
/Day66-80/res/normal-distribution.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/normal-distribution.png
--------------------------------------------------------------------------------
/Day66-80/res/notebook-get-help.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/notebook-get-help.png
--------------------------------------------------------------------------------
/Day66-80/res/notebook-magic-command.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/notebook-magic-command.png
--------------------------------------------------------------------------------
/Day66-80/res/notebook-search-namespace.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/notebook-search-namespace.png
--------------------------------------------------------------------------------
/Day66-80/res/notebook-shortcut.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/notebook-shortcut.png
--------------------------------------------------------------------------------
/Day66-80/res/numpy_functions_1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/numpy_functions_1.png
--------------------------------------------------------------------------------
/Day66-80/res/numpy_functions_2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/numpy_functions_2.png
--------------------------------------------------------------------------------
/Day66-80/res/numpy_functions_3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/numpy_functions_3.png
--------------------------------------------------------------------------------
/Day66-80/res/pivot_table_1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/pivot_table_1.png
--------------------------------------------------------------------------------
/Day66-80/res/pivot_table_2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/pivot_table_2.png
--------------------------------------------------------------------------------
/Day66-80/res/pyecharts_bar_chart.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/pyecharts_bar_chart.png
--------------------------------------------------------------------------------
/Day66-80/res/pyecharts_map_chart.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/pyecharts_map_chart.png
--------------------------------------------------------------------------------
/Day66-80/res/pyecharts_pie_chart.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/pyecharts_pie_chart.png
--------------------------------------------------------------------------------
/Day66-80/res/radar_chart.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/radar_chart.png
--------------------------------------------------------------------------------
/Day66-80/res/rose_chart.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/rose_chart.png
--------------------------------------------------------------------------------
/Day66-80/res/run-anaconda-navigator.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/run-anaconda-navigator.png
--------------------------------------------------------------------------------
/Day66-80/res/sales_bar_graph.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/sales_bar_graph.png
--------------------------------------------------------------------------------
/Day66-80/res/sales_pie_graph.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/sales_pie_graph.png
--------------------------------------------------------------------------------
/Day66-80/res/ser_bar_graph.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/ser_bar_graph.png
--------------------------------------------------------------------------------
/Day66-80/res/ser_pie_graph.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/ser_pie_graph.png
--------------------------------------------------------------------------------
/Day66-80/res/series_methods.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/series_methods.png
--------------------------------------------------------------------------------
/Day66-80/res/stacked_line_chart.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/stacked_line_chart.png
--------------------------------------------------------------------------------
/Day66-80/res/vector_1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/vector_1.png
--------------------------------------------------------------------------------
/Day66-80/res/vector_2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day66-80/res/vector_2.png
--------------------------------------------------------------------------------
/Day81-90/83.决策树.md:
--------------------------------------------------------------------------------
1 | ## 决策树
2 |
3 |
--------------------------------------------------------------------------------
/Day81-90/83.推荐系统实战-1.md:
--------------------------------------------------------------------------------
1 | ## 推荐系统实战(1)
2 |
3 |
--------------------------------------------------------------------------------
/Day81-90/84.贝叶斯分类.md:
--------------------------------------------------------------------------------
1 | ## 贝叶斯分类
2 |
3 |
--------------------------------------------------------------------------------
/Day81-90/85.支持向量机.md:
--------------------------------------------------------------------------------
1 | ## 支持向量机
2 |
3 |
--------------------------------------------------------------------------------
/Day81-90/86.K-均值聚类.md:
--------------------------------------------------------------------------------
1 | ## K-均值聚类
2 |
3 |
--------------------------------------------------------------------------------
/Day81-90/87.回归分析.md:
--------------------------------------------------------------------------------
1 | ## 回归分析
2 |
3 |
--------------------------------------------------------------------------------
/Day81-90/88.深度学习入门.md:
--------------------------------------------------------------------------------
1 | ## Tensorflow入门
2 |
3 |
--------------------------------------------------------------------------------
/Day81-90/89.PyTorch概述.md:
--------------------------------------------------------------------------------
1 | ## PyTorch入门
2 |
3 |
--------------------------------------------------------------------------------
/Day81-90/90.PyTorch实战.md:
--------------------------------------------------------------------------------
1 | ## PyTorch实战
2 |
3 |
--------------------------------------------------------------------------------
/Day81-90/res/dajiang_robomaster.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day81-90/res/dajiang_robomaster.png
--------------------------------------------------------------------------------
/Day81-90/res/face_paying.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day81-90/res/face_paying.png
--------------------------------------------------------------------------------
/Day81-90/res/quickdraw.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day81-90/res/quickdraw.png
--------------------------------------------------------------------------------
/Day81-90/res/scikit-learn-logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day81-90/res/scikit-learn-logo.png
--------------------------------------------------------------------------------
/Day81-90/res/sweep_robot.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day81-90/res/sweep_robot.jpg
--------------------------------------------------------------------------------
/Day81-90/res/xiaomi_ai_voice_box.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day81-90/res/xiaomi_ai_voice_box.png
--------------------------------------------------------------------------------
/Day91-100/100.Python面试题实录.md:
--------------------------------------------------------------------------------
1 | ## Python面试题实录
2 |
3 | > **温馨提示**:请访问我的另一个项目[“Python面试宝典”](https://github.com/jackfrued/Python-Interview-Bible)。
4 |
5 |
--------------------------------------------------------------------------------
/Day91-100/res/01.django_single_server.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day91-100/res/01.django_single_server.png
--------------------------------------------------------------------------------
/Day91-100/res/02.django_dedicated_db_server.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day91-100/res/02.django_dedicated_db_server.png
--------------------------------------------------------------------------------
/Day91-100/res/03.django_dedicated_static_server.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day91-100/res/03.django_dedicated_static_server.png
--------------------------------------------------------------------------------
/Day91-100/res/04.django_load_balance.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day91-100/res/04.django_load_balance.png
--------------------------------------------------------------------------------
/Day91-100/res/05.django_massive_cluster.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day91-100/res/05.django_massive_cluster.png
--------------------------------------------------------------------------------
/Day91-100/res/Celery_RabitMQ.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day91-100/res/Celery_RabitMQ.png
--------------------------------------------------------------------------------
/Day91-100/res/Producer-Broker-Consumer-Arrangement.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day91-100/res/Producer-Broker-Consumer-Arrangement.png
--------------------------------------------------------------------------------
/Day91-100/res/algorithm_complexity_1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day91-100/res/algorithm_complexity_1.png
--------------------------------------------------------------------------------
/Day91-100/res/algorithm_complexity_2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day91-100/res/algorithm_complexity_2.png
--------------------------------------------------------------------------------
/Day91-100/res/alipay_web_developer.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day91-100/res/alipay_web_developer.png
--------------------------------------------------------------------------------
/Day91-100/res/aliyun-certificate.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day91-100/res/aliyun-certificate.png
--------------------------------------------------------------------------------
/Day91-100/res/aliyun-dnslist.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day91-100/res/aliyun-dnslist.png
--------------------------------------------------------------------------------
/Day91-100/res/aliyun-domain.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day91-100/res/aliyun-domain.png
--------------------------------------------------------------------------------
/Day91-100/res/aliyun-keeprecord.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day91-100/res/aliyun-keeprecord.png
--------------------------------------------------------------------------------
/Day91-100/res/aliyun-resolve-settings.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day91-100/res/aliyun-resolve-settings.png
--------------------------------------------------------------------------------
/Day91-100/res/builtin-middlewares.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day91-100/res/builtin-middlewares.png
--------------------------------------------------------------------------------
/Day91-100/res/celery_architecture.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day91-100/res/celery_architecture.png
--------------------------------------------------------------------------------
/Day91-100/res/click-jacking.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day91-100/res/click-jacking.png
--------------------------------------------------------------------------------
/Day91-100/res/company_architecture.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day91-100/res/company_architecture.png
--------------------------------------------------------------------------------
/Day91-100/res/django-middleware.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day91-100/res/django-middleware.png
--------------------------------------------------------------------------------
/Day91-100/res/django-mtv.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day91-100/res/django-mtv.png
--------------------------------------------------------------------------------
/Day91-100/res/django_request_response_cycle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day91-100/res/django_request_response_cycle.png
--------------------------------------------------------------------------------
/Day91-100/res/docker_logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day91-100/res/docker_logo.png
--------------------------------------------------------------------------------
/Day91-100/res/docker_vs_vm.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day91-100/res/docker_vs_vm.png
--------------------------------------------------------------------------------
/Day91-100/res/dockerhub-repo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day91-100/res/dockerhub-repo.png
--------------------------------------------------------------------------------
/Day91-100/res/er-graph.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day91-100/res/er-graph.png
--------------------------------------------------------------------------------
/Day91-100/res/git-flow-detail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day91-100/res/git-flow-detail.png
--------------------------------------------------------------------------------
/Day91-100/res/git-flow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day91-100/res/git-flow.png
--------------------------------------------------------------------------------
/Day91-100/res/git-logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day91-100/res/git-logo.png
--------------------------------------------------------------------------------
/Day91-100/res/git-rebase.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day91-100/res/git-rebase.png
--------------------------------------------------------------------------------
/Day91-100/res/git-reset.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day91-100/res/git-reset.png
--------------------------------------------------------------------------------
/Day91-100/res/git_repository.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day91-100/res/git_repository.png
--------------------------------------------------------------------------------
/Day91-100/res/gitee-add-members.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day91-100/res/gitee-add-members.png
--------------------------------------------------------------------------------
/Day91-100/res/gitee-create-project.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day91-100/res/gitee-create-project.png
--------------------------------------------------------------------------------
/Day91-100/res/gitee-project-index.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day91-100/res/gitee-project-index.png
--------------------------------------------------------------------------------
/Day91-100/res/gitee-pull-request.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day91-100/res/gitee-pull-request.png
--------------------------------------------------------------------------------
/Day91-100/res/gitlab-about.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day91-100/res/gitlab-about.png
--------------------------------------------------------------------------------
/Day91-100/res/gitlab-new-issue.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day91-100/res/gitlab-new-issue.png
--------------------------------------------------------------------------------
/Day91-100/res/hadoop_ecosystem.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day91-100/res/hadoop_ecosystem.png
--------------------------------------------------------------------------------
/Day91-100/res/http-request.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day91-100/res/http-request.png
--------------------------------------------------------------------------------
/Day91-100/res/http-response.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day91-100/res/http-response.png
--------------------------------------------------------------------------------
/Day91-100/res/jenkins-create-admin.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day91-100/res/jenkins-create-admin.png
--------------------------------------------------------------------------------
/Day91-100/res/jenkins-unlock.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day91-100/res/jenkins-unlock.png
--------------------------------------------------------------------------------
/Day91-100/res/jenkins_new_project.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day91-100/res/jenkins_new_project.png
--------------------------------------------------------------------------------
/Day91-100/res/mvc.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day91-100/res/mvc.png
--------------------------------------------------------------------------------
/Day91-100/res/oauth2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day91-100/res/oauth2.png
--------------------------------------------------------------------------------
/Day91-100/res/power-designer-pdm.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day91-100/res/power-designer-pdm.png
--------------------------------------------------------------------------------
/Day91-100/res/pylint.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day91-100/res/pylint.png
--------------------------------------------------------------------------------
/Day91-100/res/python_jobs_chengdu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day91-100/res/python_jobs_chengdu.png
--------------------------------------------------------------------------------
/Day91-100/res/python_salary_chengdu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day91-100/res/python_salary_chengdu.png
--------------------------------------------------------------------------------
/Day91-100/res/rbac-basic.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day91-100/res/rbac-basic.png
--------------------------------------------------------------------------------
/Day91-100/res/rbac-full.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day91-100/res/rbac-full.png
--------------------------------------------------------------------------------
/Day91-100/res/requirements_by_xmind.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day91-100/res/requirements_by_xmind.png
--------------------------------------------------------------------------------
/Day91-100/res/selenium_ide.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day91-100/res/selenium_ide.png
--------------------------------------------------------------------------------
/Day91-100/res/shopping-pdm.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day91-100/res/shopping-pdm.png
--------------------------------------------------------------------------------
/Day91-100/res/the-daily-scrum-in-the-sprint-cycle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day91-100/res/the-daily-scrum-in-the-sprint-cycle.png
--------------------------------------------------------------------------------
/Day91-100/res/uml-class-diagram.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day91-100/res/uml-class-diagram.png
--------------------------------------------------------------------------------
/Day91-100/res/uml-graph.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day91-100/res/uml-graph.png
--------------------------------------------------------------------------------
/Day91-100/res/uml.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day91-100/res/uml.png
--------------------------------------------------------------------------------
/Day91-100/res/unlock-jenkins.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day91-100/res/unlock-jenkins.png
--------------------------------------------------------------------------------
/Day91-100/res/web-application.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day91-100/res/web-application.png
--------------------------------------------------------------------------------
/Day91-100/res/zentao-index.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day91-100/res/zentao-index.png
--------------------------------------------------------------------------------
/Day91-100/res/zentao-login.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/Day91-100/res/zentao-login.png
--------------------------------------------------------------------------------
/res/ABF827024EA535099DC0E6A66A336C51.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/res/ABF827024EA535099DC0E6A66A336C51.png
--------------------------------------------------------------------------------
/res/agile-scrum-sprint-cycle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/res/agile-scrum-sprint-cycle.png
--------------------------------------------------------------------------------
/res/company_architecture.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/res/company_architecture.png
--------------------------------------------------------------------------------
/res/donation1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/res/donation1.png
--------------------------------------------------------------------------------
/res/donation2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/res/donation2.png
--------------------------------------------------------------------------------
/res/donation3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/res/donation3.png
--------------------------------------------------------------------------------
/res/donation4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/res/donation4.png
--------------------------------------------------------------------------------
/res/donation5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/res/donation5.png
--------------------------------------------------------------------------------
/res/donation6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/res/donation6.png
--------------------------------------------------------------------------------
/res/donation7.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/res/donation7.png
--------------------------------------------------------------------------------
/res/donation8.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/res/donation8.png
--------------------------------------------------------------------------------
/res/hadoop_ecosystem.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/res/hadoop_ecosystem.png
--------------------------------------------------------------------------------
/res/power-designer-pdm.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/res/power-designer-pdm.png
--------------------------------------------------------------------------------
/res/pylint.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/res/pylint.png
--------------------------------------------------------------------------------
/res/python-built-in-functions.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/res/python-built-in-functions.png
--------------------------------------------------------------------------------
/res/python-job-all.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/res/python-job-all.png
--------------------------------------------------------------------------------
/res/python-job-chengdu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/res/python-job-chengdu.png
--------------------------------------------------------------------------------
/res/python_jobs_chengdu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/res/python_jobs_chengdu.png
--------------------------------------------------------------------------------
/res/qrcode.JPG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/res/qrcode.JPG
--------------------------------------------------------------------------------
/res/rbac-basic.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/res/rbac-basic.png
--------------------------------------------------------------------------------
/res/rbac-full.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/res/rbac-full.png
--------------------------------------------------------------------------------
/res/requirements_by_xmind.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/res/requirements_by_xmind.png
--------------------------------------------------------------------------------
/res/uml-class-diagram.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/res/uml-class-diagram.png
--------------------------------------------------------------------------------
/res/zen-of-python.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/res/zen-of-python.png
--------------------------------------------------------------------------------
/公开课/文档/年薪50W+的Python程序员如何写代码/code/Java/opencourse/out/production/opencourse/META-INF/opencourse.kotlin_module:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/公开课/文档/年薪50W+的Python程序员如何写代码/code/Java/opencourse/out/production/opencourse/org/mobiletrain/Example01.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/公开课/文档/年薪50W+的Python程序员如何写代码/code/Java/opencourse/out/production/opencourse/org/mobiletrain/Example01.class
--------------------------------------------------------------------------------
/公开课/文档/年薪50W+的Python程序员如何写代码/code/Java/opencourse/out/production/opencourse/org/mobiletrain/Example02.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/公开课/文档/年薪50W+的Python程序员如何写代码/code/Java/opencourse/out/production/opencourse/org/mobiletrain/Example02.class
--------------------------------------------------------------------------------
/公开课/文档/年薪50W+的Python程序员如何写代码/code/Java/opencourse/out/production/opencourse/org/mobiletrain/Example03.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/公开课/文档/年薪50W+的Python程序员如何写代码/code/Java/opencourse/out/production/opencourse/org/mobiletrain/Example03.class
--------------------------------------------------------------------------------
/公开课/文档/年薪50W+的Python程序员如何写代码/code/Java/opencourse/out/production/opencourse/org/mobiletrain/Example04.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/公开课/文档/年薪50W+的Python程序员如何写代码/code/Java/opencourse/out/production/opencourse/org/mobiletrain/Example04.class
--------------------------------------------------------------------------------
/公开课/文档/年薪50W+的Python程序员如何写代码/code/Java/opencourse/out/production/opencourse/org/mobiletrain/Example05$RequestHandler.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/公开课/文档/年薪50W+的Python程序员如何写代码/code/Java/opencourse/out/production/opencourse/org/mobiletrain/Example05$RequestHandler.class
--------------------------------------------------------------------------------
/公开课/文档/年薪50W+的Python程序员如何写代码/code/Java/opencourse/out/production/opencourse/org/mobiletrain/Example05.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/公开课/文档/年薪50W+的Python程序员如何写代码/code/Java/opencourse/out/production/opencourse/org/mobiletrain/Example05.class
--------------------------------------------------------------------------------
/公开课/文档/年薪50W+的Python程序员如何写代码/code/Java/opencourse/src/org/mobiletrain/Example01.java:
--------------------------------------------------------------------------------
1 | package org.mobiletrain;
2 |
3 | class Example01 {
4 |
5 | public static void main(String[] args) {
6 | System.out.println("hello, world");
7 | }
8 | }
--------------------------------------------------------------------------------
/公开课/文档/年薪50W+的Python程序员如何写代码/code/Java/opencourse/src/org/mobiletrain/Example02.java:
--------------------------------------------------------------------------------
1 | package org.mobiletrain;
2 |
3 | public class Example02 {
4 |
5 | public static void main(String[] args) {
6 | int total = 0;
7 | for (int i = 1; i <= 100; ++i) {
8 | total += i;
9 | }
10 | System.out.println(total);
11 | }
12 | }
13 |
--------------------------------------------------------------------------------
/公开课/文档/年薪50W+的Python程序员如何写代码/code/Java/opencourse/src/org/mobiletrain/Example03.java:
--------------------------------------------------------------------------------
1 | package org.mobiletrain;
2 |
3 | import java.util.Arrays;
4 |
5 | public class Example03 {
6 |
7 | public static void main(String[] args) {
8 | boolean[] values = new boolean[10];
9 | Arrays.fill(values, true);
10 | System.out.println(Arrays.toString(values));
11 |
12 | int[] numbers = new int[10];
13 | for (int i = 0; i < numbers.length; ++i) {
14 | numbers[i] = i + 1;
15 | }
16 | System.out.println(Arrays.toString(numbers));
17 | }
18 | }
--------------------------------------------------------------------------------
/公开课/文档/年薪50W+的Python程序员如何写代码/code/Python/USvideos.csv:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/公开课/文档/年薪50W+的Python程序员如何写代码/code/Python/USvideos.csv
--------------------------------------------------------------------------------
/公开课/文档/年薪50W+的Python程序员如何写代码/code/Python/opencourse/part01/example01.py:
--------------------------------------------------------------------------------
1 | print('hello, world')
2 |
--------------------------------------------------------------------------------
/公开课/文档/年薪50W+的Python程序员如何写代码/code/Python/opencourse/part01/example02.py:
--------------------------------------------------------------------------------
1 | print(sum(range(1, 101)))
2 |
--------------------------------------------------------------------------------
/公开课/文档/年薪50W+的Python程序员如何写代码/code/Python/opencourse/part01/example03.py:
--------------------------------------------------------------------------------
1 | values = [True] * 10
2 | print(values)
3 | numbers = [x for x in range(1, 11)]
4 | print(numbers)
5 |
--------------------------------------------------------------------------------
/公开课/文档/年薪50W+的Python程序员如何写代码/code/Python/opencourse/part01/example05.py:
--------------------------------------------------------------------------------
1 | from http.server import HTTPServer, SimpleHTTPRequestHandler
2 |
3 |
4 | class RequestHandler(SimpleHTTPRequestHandler):
5 |
6 | def do_GET(self):
7 | self.send_response(200)
8 | self.end_headers()
9 | self.wfile.write('goodbye, world
'.encode())
10 |
11 |
12 | server = HTTPServer(('', 8000), RequestHandler)
13 | server.serve_forever()
14 |
--------------------------------------------------------------------------------
/公开课/文档/年薪50W+的Python程序员如何写代码/code/Python/opencourse/part01/example07.py:
--------------------------------------------------------------------------------
1 | from functools import lru_cache
2 |
3 |
4 | @lru_cache()
5 | def fib(num):
6 | if num in (1, 2):
7 | return 1
8 | return fib(num - 1) + fib(num - 2)
9 |
10 |
11 | for n in range(1, 121):
12 | print(f'{n}: {fib(n)}')
13 |
--------------------------------------------------------------------------------
/公开课/文档/年薪50W+的Python程序员如何写代码/code/Python/opencourse/part01/example08.py:
--------------------------------------------------------------------------------
1 | from functools import wraps
2 | from threading import RLock
3 |
4 |
5 | def singleton(cls):
6 | instances = {}
7 | lock = RLock()
8 |
9 | @wraps(cls)
10 | def wrapper(*args, **kwargs):
11 | if cls not in instances:
12 | with lock:
13 | if cls not in instances:
14 | instances[cls] = cls(*args, **kwargs)
15 | return instances[cls]
16 |
17 |
18 | @singleton
19 | class President:
20 | pass
21 |
22 |
23 | President = President.__wrapped__
24 |
--------------------------------------------------------------------------------
/公开课/文档/年薪50W+的Python程序员如何写代码/code/Python/opencourse/part01/example09.py:
--------------------------------------------------------------------------------
1 | import copy
2 |
3 |
4 | class PrototypeMeta(type):
5 |
6 | def __init__(cls, *args, **kwargs):
7 | super().__init__(*args, **kwargs)
8 | cls.clone = lambda self, is_deep=True: \
9 | copy.deepcopy(self) if is_deep else copy.copy(self)
10 |
11 |
12 | class Student(metaclass=PrototypeMeta):
13 | pass
14 |
15 |
16 | stu1 = Student()
17 | stu2 = stu1.clone()
18 | print(stu1 == stu2)
19 | print(id(stu1), id(stu2))
20 |
--------------------------------------------------------------------------------
/公开课/文档/年薪50W+的Python程序员如何写代码/code/Python/opencourse/part01/example10.py:
--------------------------------------------------------------------------------
1 | import random
2 | import time
3 |
4 | import requests
5 | from bs4 import BeautifulSoup
6 |
7 | for page in range(10):
8 | resp = requests.get(
9 | url=f'https://movie.douban.com/top250?start={25 * page}',
10 | headers={'User-Agent': 'BaiduSpider'}
11 | )
12 | soup = BeautifulSoup(resp.text, "lxml")
13 | for elem in soup.select('a > span.title:nth-child(1)'):
14 | print(elem.text)
15 | time.sleep(random.random() * 5)
16 |
--------------------------------------------------------------------------------
/公开课/文档/年薪50W+的Python程序员如何写代码/code/Python/opencourse/part02/idiom01.py:
--------------------------------------------------------------------------------
1 | name = 'jackfrued'
2 | fruits = ['apple', 'orange', 'grape']
3 | owners = {'name': '骆昊', 'age': 40, 'gender': True}
4 |
5 | # if name != '' and len(fruits) > 0 and len(owners.keys()) > 0:
6 | # print('Jackfrued love fruits.')
7 |
8 | if name and fruits and owners:
9 | print('Jackfrued love fruits.')
10 |
--------------------------------------------------------------------------------
/公开课/文档/年薪50W+的Python程序员如何写代码/code/Python/opencourse/part02/idiom02.py:
--------------------------------------------------------------------------------
1 | a, b = 5, 10
2 |
3 | # temp = a
4 | # a = b
5 | # b = a
6 |
7 | a, b = b, a
8 | print(f'a = {a}, b = {b}')
9 |
--------------------------------------------------------------------------------
/公开课/文档/年薪50W+的Python程序员如何写代码/code/Python/opencourse/part02/idiom03.py:
--------------------------------------------------------------------------------
1 | chars = ['j', 'a', 'c', 'k', 'f', 'r', 'u', 'e', 'd']
2 |
3 | # name = ''
4 | # for char in chars:
5 | # name += char
6 |
7 | name = ''.join(chars)
8 | print(name)
9 |
--------------------------------------------------------------------------------
/公开课/文档/年薪50W+的Python程序员如何写代码/code/Python/opencourse/part02/idiom04.py:
--------------------------------------------------------------------------------
1 | fruits = ['orange', 'grape', 'pitaya', 'blueberry']
2 |
3 | # index = 0
4 | # for fruit in fruits:
5 | # print(index, ':', fruit)
6 | # index += 1
7 |
8 | for index, fruit in enumerate(fruits):
9 | print(index, ':', fruit)
10 |
--------------------------------------------------------------------------------
/公开课/文档/年薪50W+的Python程序员如何写代码/code/Python/opencourse/part02/idiom05.py:
--------------------------------------------------------------------------------
1 | data = [7, 20, 3, 15, 11]
2 |
3 | # result = []
4 | # for i in data:
5 | # if i > 10:
6 | # result.append(i * 3)
7 |
8 | result = [num * 3 for num in data if num > 10]
9 | print(result)
10 |
--------------------------------------------------------------------------------
/公开课/文档/年薪50W+的Python程序员如何写代码/code/Python/opencourse/part02/idiom06.py:
--------------------------------------------------------------------------------
1 | data = {'x': '5'}
2 |
3 | # if 'x' in data and isinstance(data['x'], (str, int, float)) \
4 | # and data['x'].isdigit():
5 | # value = int(data['x'])
6 | # print(value)
7 | # else:
8 | # value = None
9 |
10 | try:
11 | value = int(data['x'])
12 | print(value)
13 | except (KeyError, TypeError, ValueError):
14 | value = None
15 |
--------------------------------------------------------------------------------
/公开课/文档/年薪50W+的Python程序员如何写代码/code/Python/opencourse/part04/example.py.lprof:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/公开课/文档/年薪50W+的Python程序员如何写代码/code/Python/opencourse/part04/example.py.lprof
--------------------------------------------------------------------------------
/公开课/文档/年薪50W+的Python程序员如何写代码/res/action.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/公开课/文档/年薪50W+的Python程序员如何写代码/res/action.png
--------------------------------------------------------------------------------
/公开课/文档/年薪50W+的Python程序员如何写代码/res/use-pandas-in-jupyter-notebook.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/公开课/文档/年薪50W+的Python程序员如何写代码/res/use-pandas-in-jupyter-notebook.png
--------------------------------------------------------------------------------
/公开课/文档/第04次公开课-好玩的Python/code/example01.py:
--------------------------------------------------------------------------------
1 | from PIL import Image, ImageFilter
2 |
3 |
4 | chiling = Image.open('resources/chiling.jpg')
5 | width, height = chiling.size
6 | chiling.show()
7 | chiling.transpose(Image.FLIP_LEFT_RIGHT).show()
8 | chiling.filter(ImageFilter.GaussianBlur(4)).show()
9 | chiling.filter(ImageFilter.EMBOSS).show()
10 | chiling.thumbnail((width // 4, height // 4))
11 | chiling.show()
12 |
--------------------------------------------------------------------------------
/公开课/文档/第04次公开课-好玩的Python/code/resources/chiling.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/公开课/文档/第04次公开课-好玩的Python/code/resources/chiling.jpg
--------------------------------------------------------------------------------
/公开课/文档/第04次公开课-好玩的Python/code/resources/frame.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/公开课/文档/第04次公开课-好玩的Python/code/resources/frame.jpg
--------------------------------------------------------------------------------
/公开课/文档/第04次公开课-好玩的Python/res/requests.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/公开课/文档/第04次公开课-好玩的Python/res/requests.png
--------------------------------------------------------------------------------
/公开课/文档/第05次公开课-算法入门系列1-周而复始/code/Python_Tricks_encrypted.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/公开课/文档/第05次公开课-算法入门系列1-周而复始/code/Python_Tricks_encrypted.pdf
--------------------------------------------------------------------------------
/公开课/文档/第05次公开课-算法入门系列1-周而复始/code/example01.py:
--------------------------------------------------------------------------------
1 | nums = []
2 | for i in range(100000):
3 | nums.append(i)
4 | nums.reverse()
5 | print(nums)
6 |
--------------------------------------------------------------------------------
/公开课/文档/第05次公开课-算法入门系列1-周而复始/code/example02.py:
--------------------------------------------------------------------------------
1 | nums = []
2 | for i in range(100000):
3 | nums.insert(0, i)
4 | print(nums)
5 |
--------------------------------------------------------------------------------
/公开课/文档/第05次公开课-算法入门系列1-周而复始/code/example03.py:
--------------------------------------------------------------------------------
1 | a, b = 0, 1
2 | for num in range(1, 101):
3 | a, b = b, a + b
4 | print(f'{num}: {a}')
5 |
6 |
--------------------------------------------------------------------------------
/公开课/文档/第05次公开课-算法入门系列1-周而复始/code/example04.py:
--------------------------------------------------------------------------------
1 | from functools import lru_cache
2 |
3 |
4 | @lru_cache()
5 | def fib(num):
6 | if num in (1, 2):
7 | return 1
8 | return fib(num - 1) + fib(num - 2)
9 |
10 |
11 | for num in range(1, 101):
12 | print(f'{num}: {fib(num)}')
13 |
--------------------------------------------------------------------------------
/公开课/文档/第05次公开课-算法入门系列1-周而复始/code/example05.py:
--------------------------------------------------------------------------------
1 | """
2 | 公鸡5元一只,母鸡3元一只,小鸡1元三只,用100元买一百只鸡,问公鸡、母鸡、小鸡各有多少只?
3 | """
4 | for x in range(21):
5 | for y in range(34):
6 | z = 100 - x - y
7 | if z % 3 == 0 and 5 * x + 3 * y + z // 3 == 100:
8 | print(x, y, z)
9 |
10 |
--------------------------------------------------------------------------------
/公开课/文档/第05次公开课-算法入门系列1-周而复始/code/example06.py:
--------------------------------------------------------------------------------
1 | import re
2 |
3 | import PyPDF2
4 |
5 | with open('Python_Tricks_encrypted.pdf', 'rb') as pdf_file_stream:
6 | reader = PyPDF2.PdfFileReader(pdf_file_stream)
7 | with open('dictionary.txt', 'r') as txt_file_stream:
8 | file_iter = iter(lambda: txt_file_stream.readline(), '')
9 | for word in file_iter:
10 | word = re.sub(r'\s', '', word)
11 | if reader.decrypt(word):
12 | print(word)
13 | break
14 |
15 |
--------------------------------------------------------------------------------
/公开课/文档/第05次公开课-算法入门系列1-周而复始/算法入门系列1-周而复始.key:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/公开课/文档/第05次公开课-算法入门系列1-周而复始/算法入门系列1-周而复始.key
--------------------------------------------------------------------------------
/公开课/文档/第06次公开课-算法入门系列2-在水一方/code/example01.py:
--------------------------------------------------------------------------------
1 | import sys
2 |
3 |
4 | def fac(num):
5 | if num == 0:
6 | return 1
7 | return num * fac(num - 1)
8 |
9 |
10 | def main():
11 | print(fac(59996))
12 |
13 |
14 | if __name__ == '__main__':
15 | sys.setrecursionlimit(60000)
16 | main()
17 | # for i in range(1000):
18 | # print(f'{i}:'.rjust(3), fac(i))
19 |
20 |
--------------------------------------------------------------------------------
/公开课/文档/第06次公开课-算法入门系列2-在水一方/code/example02.py:
--------------------------------------------------------------------------------
1 | def climb(num):
2 | a, b, c = 1, 2, 4
3 | for _ in range(num - 1):
4 | a, b, c = b, c, a + b + c
5 | return a
6 |
7 |
8 | def main():
9 | n = int(input('台阶数量: '))
10 | print(climb(n))
11 |
12 |
13 | if __name__ == '__main__':
14 | main()
15 |
--------------------------------------------------------------------------------
/公开课/文档/第06次公开课-算法入门系列2-在水一方/code/example05.py:
--------------------------------------------------------------------------------
1 | size = 25
2 |
3 | for i in range(size):
4 | for j in range(size):
5 | if i % 2 == 1 or j % 2 == 1:
6 | print('■', end='')
7 | else:
8 | print('□', end='')
9 | print()
10 |
11 |
--------------------------------------------------------------------------------
/公开课/文档/第06次公开课-算法入门系列2-在水一方/res/droste.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/公开课/文档/第06次公开课-算法入门系列2-在水一方/res/droste.png
--------------------------------------------------------------------------------
/公开课/文档/第06次公开课-算法入门系列2-在水一方/res/eight_queen.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/公开课/文档/第06次公开课-算法入门系列2-在水一方/res/eight_queen.png
--------------------------------------------------------------------------------
/公开课/文档/第06次公开课-算法入门系列2-在水一方/res/knight_tour.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/公开课/文档/第06次公开课-算法入门系列2-在水一方/res/knight_tour.gif
--------------------------------------------------------------------------------
/公开课/文档/第06次公开课-算法入门系列2-在水一方/res/maze.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/公开课/文档/第06次公开课-算法入门系列2-在水一方/res/maze.png
--------------------------------------------------------------------------------
/公开课/文档/第06次公开课-算法入门系列2-在水一方/算法入门系列2-在水一方.key:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/公开课/文档/第06次公开课-算法入门系列2-在水一方/算法入门系列2-在水一方.key
--------------------------------------------------------------------------------
/公开课/视频/视频链接.txt:
--------------------------------------------------------------------------------
1 | 链接:https://pan.baidu.com/s/1W53OztYWPyQ8BwPV3nbY_Q 密码:67ws
--------------------------------------------------------------------------------
/番外篇/Python数据分析师面试题.md:
--------------------------------------------------------------------------------
1 | ## Python数据分析师面试题
2 |
3 | ### 基础知识部分
4 |
5 |
6 |
7 | ### 编程能力部分
8 |
9 |
10 |
11 | ### 商业项目部分
12 |
13 | 1. 近期公司的X指标出现了明显的下滑,说说你会如果系统化的分析指标下滑的原因。
14 | 2. 公司对App进行了版本迭代,对X功能做出了调整,请说明你会如何评估改版的效果。
15 | 3. 公司对App做了一次营销拉新活动,请说明你会如何评估本次拉新活动的效果。
16 | 4. 请说说你在设计数据报表时一般会考虑哪些问题。
17 | 5.
--------------------------------------------------------------------------------
/番外篇/code/Test.java:
--------------------------------------------------------------------------------
1 | class Test {
2 |
3 | public static void main(String[] args) {
4 | JOptionPane.showMessageDialog(null, "Hello, world!");
5 | System.exit(0);
6 | }
7 | }
--------------------------------------------------------------------------------
/番外篇/code/Test01.java:
--------------------------------------------------------------------------------
1 | class Test01 {
2 |
3 | public static void main(String[] args) {
4 | System.out.println("hello, world!");
5 | }
6 | }
--------------------------------------------------------------------------------
/番外篇/code/Test02.java:
--------------------------------------------------------------------------------
1 | class Test02 {
2 |
3 | public static void main(String[] args) {
4 | int total = 0;
5 | for (int i = 1; i <= 100; ++i) {
6 | total += i;
7 | }
8 | System.out.println(total);
9 | }
10 | }
--------------------------------------------------------------------------------
/番外篇/code/test.py:
--------------------------------------------------------------------------------
1 | def merge(items1, items2):
2 | items3 = []
3 | index1, index2 = 0, 0
4 | while index1 < len(items) and index2 < len(items2):
5 | if items[index1] < items2[index2]:
6 | items3.append(items1[index1])
7 | index1 += 1
8 | else:
9 | items3.append(items2[index2])
10 | index2 += 1
11 |
--------------------------------------------------------------------------------
/番外篇/code/test01.py:
--------------------------------------------------------------------------------
1 | print('hello, world!')
--------------------------------------------------------------------------------
/番外篇/code/test02.py:
--------------------------------------------------------------------------------
1 | print(sum(range(1, 101)))
--------------------------------------------------------------------------------
/番外篇/code/test03.py:
--------------------------------------------------------------------------------
1 | from random import randint, sample
2 |
3 | # 初始化备选红色球
4 | red_balls = [x for x in range(1, 34)]
5 | # 选出六个红色球
6 | selected_balls = sample(red_balls, 6)
7 | # 对红色球进行排序
8 | selected_balls.sort()
9 | # 添加一个蓝色球
10 | selected_balls.append(randint(1, 16))
11 | # 输出选中的随机号码
12 | for index, ball in enumerate(selected_balls):
13 | print('%02d' % ball, end=' ')
14 | if index == len(selected_balls) - 2:
15 | print('|', end=' ')
16 | print()
--------------------------------------------------------------------------------
/番外篇/res/create-new-repo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/番外篇/res/create-new-repo.png
--------------------------------------------------------------------------------
/番外篇/res/dns-configuration.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/番外篇/res/dns-configuration.png
--------------------------------------------------------------------------------
/番外篇/res/hexo-default-index.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/番外篇/res/hexo-default-index.png
--------------------------------------------------------------------------------
/番外篇/res/int-is-comparation.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/番外篇/res/int-is-comparation.png
--------------------------------------------------------------------------------
/番外篇/res/pycharm-activation.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/番外篇/res/pycharm-activation.png
--------------------------------------------------------------------------------
/番外篇/res/pycharm-create-launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/番外篇/res/pycharm-create-launcher.png
--------------------------------------------------------------------------------
/番外篇/res/pycharm-import-settings.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/番外篇/res/pycharm-import-settings.png
--------------------------------------------------------------------------------
/番外篇/res/pycharm-install-plugins.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/番外篇/res/pycharm-install-plugins.png
--------------------------------------------------------------------------------
/番外篇/res/pycharm-installation.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/番外篇/res/pycharm-installation.png
--------------------------------------------------------------------------------
/番外篇/res/pycharm-project-wizard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/番外篇/res/pycharm-project-wizard.png
--------------------------------------------------------------------------------
/番外篇/res/pycharm-run-result.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/番外篇/res/pycharm-run-result.png
--------------------------------------------------------------------------------
/番外篇/res/pycharm-ui-themes.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/番外篇/res/pycharm-ui-themes.png
--------------------------------------------------------------------------------
/番外篇/res/pycharm-welcome.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/番外篇/res/pycharm-welcome.png
--------------------------------------------------------------------------------
/番外篇/res/pycharm-workspace.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/番外篇/res/pycharm-workspace.png
--------------------------------------------------------------------------------
/番外篇/res/python-tutor-visualize.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/番外篇/res/python-tutor-visualize.png
--------------------------------------------------------------------------------
/番外篇/res/python-tutor-visualize2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/番外篇/res/python-tutor-visualize2.png
--------------------------------------------------------------------------------
/番外篇/res/result-of-dis.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/番外篇/res/result-of-dis.png
--------------------------------------------------------------------------------
/番外篇/res/wanwang.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mustafa-Hassan2001/Python-100-Days/28bfaa3d0368d711d3ba4b5e6897b1838ba4d7e9/番外篇/res/wanwang.png
--------------------------------------------------------------------------------