在好例子网,分享、交流、成长!
您当前所在位置:首页Python 开发实例Python语言基础 → Learning Python Application Development(pdf+epub+mobi+code_files).zip

Learning Python Application Development(pdf+epub+mobi+code_files).zip

Python语言基础

下载此实例
  • 开发语言:Python
  • 实例大小:73.55M
  • 下载次数:11
  • 浏览次数:8
  • 发布时间:2023-11-25
  • 实例类别:Python语言基础
  • 发 布 人:chenxiaolan
  • 文件格式:.zip
  • 所需积分:2

实例介绍

【实例简介】Learning Python Application Development Learning Python Application Development

【实例截图】

from clipboard

【核心代码】

.
├── Learning Python Application Development(pdf epub mobi code_files).zip_LearningPythonApplicationDevelopment.zip
├── Learning Python Application Development_Code.zip
└── LearningPythonApplicationDevelopment_code
    ├── Chapter 1
    │   ├── LICENSE.txt
    │   ├── README
    │   ├── ch01_ex01.py
    │   ├── ch01_ex02.py
    │   ├── ch01_ex03.py
    │   ├── ch01_ex03_AbstractBaseClass.py
    │   ├── example_abc.py
    │   └── src_ch1_python2
    │       ├── LICENSE.txt
    │       ├── ch01_ex01.py
    │       ├── ch01_ex02.py
    │       ├── ch01_ex03.py
    │       └── ch01_ex03_AbstractBaseClass.py
    ├── Chapter 10
    │   └── B05034_ch10_SRC_V2
    │       ├── Hut_small.gif
    │       ├── Jungle_small.gif
    │       ├── LICENSE.txt
    │       ├── README
    │       ├── README~
    │       ├── gridmanager.py
    │       ├── hutgame.py
    │       ├── hutgame_mvc.py
    │       ├── hutgame_mvc_pubsub.py
    │       ├── mainloop_example.py
    │       ├── simple_application_1.py
    │       ├── simple_application_2.py
    │       ├── simple_application_bind_method.py
    │       └── src_ch10_python2
    │           ├── Hut_small.gif
    │           ├── Jungle_small.gif
    │           ├── LICENSE.txt
    │           ├── README~
    │           ├── gridmanager.py
    │           ├── hutgame.py
    │           ├── hutgame_mvc.py
    │           ├── hutgame_mvc_pubsub.py
    │           ├── mainloop_example.py
    │           ├── simple_application_1.py
    │           ├── simple_application_2.py
    │           └── simple_application_bind_method.py
    ├── Chapter 2
    │   ├── LICENSE.txt
    │   ├── README
    │   ├── attackoftheorcs_v1_1.py
    │   ├── ch01_ex03_AbstractBaseClass.py
    │   ├── gameuniterror.py
    │   ├── heal_exception_example.py
    │   ├── multiple_exceptions_example.py
    │   └── src_ch2_python2
    │       ├── LICENSE.txt
    │       ├── attackoftheorcs_v1_1.py
    │       ├── ch01_ex03_AbstractBaseClass.py
    │       ├── gameuniterror.py
    │       ├── heal_exception_example.py
    │       └── multiple_exceptions_example.py
    ├── Chapter 3
    │   └── B05034_ch3_SRC_V3
    │       ├── README
    │       ├── src_ch3_python2
    │       │   └── py2_wargame_distribution
    │       │       ├── LICENSE.txt
    │       │       ├── MANIFEST.in
    │       │       ├── README
    │       │       ├── setup.py
    │       │       └── wargame
    │       │           ├── __init__.py
    │       │           ├── abstractgameunit.py
    │       │           ├── attackoftheorcs.py
    │       │           ├── gameuniterror.py
    │       │           ├── gameutils.py
    │       │           ├── hut.py
    │       │           ├── knight.py
    │       │           └── orcrider.py
    │       └── wargame_distribution
    │           ├── LICENSE.txt
    │           ├── MANIFEST.in
    │           ├── README
    │           ├── setup.py
    │           └── wargame
    │               ├── __init__.py
    │               ├── abstractgameunit.py
    │               ├── attackoftheorcs.py
    │               ├── gameuniterror.py
    │               ├── gameutils.py
    │               ├── hut.py
    │               ├── knight.py
    │               └── orcrider.py
    ├── Chapter 4
    │   └── B05034_ch4_SRC_V3
    │       ├── README
    │       ├── README~
    │       ├── src_ch4_python2
    │       │   └── wargame
    │       │       ├── LICENSE
    │       │       ├── __init__.py
    │       │       ├── abstractgameunit.py
    │       │       ├── attackoftheorcs.py
    │       │       ├── docs
    │       │       │   ├── Makefile
    │       │       │   ├── build
    │       │       │   │   ├── _sources
    │       │       │   │   │   ├── index.txt
    │       │       │   │   │   ├── modules.txt
    │       │       │   │   │   └── wargame.txt
    │       │       │   │   ├── _static
    │       │       │   │   │   ├── ajax-loader.gif
    │       │       │   │   │   ├── basic.css
    │       │       │   │   │   ├── comment-bright.png
    │       │       │   │   │   ├── comment-close.png
    │       │       │   │   │   ├── comment.png
    │       │       │   │   │   ├── default.css
    │       │       │   │   │   ├── doctools.js
    │       │       │   │   │   ├── down-pressed.png
    │       │       │   │   │   ├── down.png
    │       │       │   │   │   ├── file.png
    │       │       │   │   │   ├── jquery.js
    │       │       │   │   │   ├── minus.png
    │       │       │   │   │   ├── plus.png
    │       │       │   │   │   ├── pygments.css
    │       │       │   │   │   ├── searchtools.js
    │       │       │   │   │   ├── sidebar.js
    │       │       │   │   │   ├── underscore.js
    │       │       │   │   │   ├── up-pressed.png
    │       │       │   │   │   ├── up.png
    │       │       │   │   │   └── websupport.js
    │       │       │   │   ├── genindex.html
    │       │       │   │   ├── index.html
    │       │       │   │   ├── modules.html
    │       │       │   │   ├── objects.inv
    │       │       │   │   ├── py-modindex.html
    │       │       │   │   ├── search.html
    │       │       │   │   ├── searchindex.js
    │       │       │   │   └── wargame.html
    │       │       │   ├── create_apidoc
    │       │       │   ├── make.bat.txt
    │       │       │   └── source
    │       │       │       ├── _static
    │       │       │       ├── _templates
    │       │       │       ├── conf.py
    │       │       │       ├── conf.py~
    │       │       │       ├── index.rst
    │       │       │       ├── modules.rst
    │       │       │       └── wargame.rst
    │       │       ├── gameuniterror.py
    │       │       ├── gameutils.py
    │       │       ├── hut.py
    │       │       ├── knight.py
    │       │       └── orcrider.py
    │       └── wargame
    │           ├── LICENSE
    │           ├── __init__.py
    │           ├── abstractgameunit.py
    │           ├── attackoftheorcs.py
    │           ├── docs
    │           │   ├── Makefile
    │           │   ├── build
    │           │   │   ├── _sources
    │           │   │   │   ├── index.txt
    │           │   │   │   ├── modules.txt
    │           │   │   │   └── wargame.txt
    │           │   │   ├── _static
    │           │   │   │   ├── ajax-loader.gif
    │           │   │   │   ├── alabaster.css
    │           │   │   │   ├── basic.css
    │           │   │   │   ├── comment-bright.png
    │           │   │   │   ├── comment-close.png
    │           │   │   │   ├── comment.png
    │           │   │   │   ├── doctools.js
    │           │   │   │   ├── down-pressed.png
    │           │   │   │   ├── down.png
    │           │   │   │   ├── file.png
    │           │   │   │   ├── jquery-1.11.1.js
    │           │   │   │   ├── jquery.js
    │           │   │   │   ├── minus.png
    │           │   │   │   ├── plus.png
    │           │   │   │   ├── pygments.css
    │           │   │   │   ├── searchtools.js
    │           │   │   │   ├── underscore-1.3.1.js
    │           │   │   │   ├── underscore.js
    │           │   │   │   ├── up-pressed.png
    │           │   │   │   ├── up.png
    │           │   │   │   └── websupport.js
    │           │   │   ├── genindex.html
    │           │   │   ├── index.html
    │           │   │   ├── modules.html
    │           │   │   ├── objects.inv
    │           │   │   ├── py-modindex.html
    │           │   │   ├── search.html
    │           │   │   ├── searchindex.js
    │           │   │   └── wargame.html
    │           │   ├── create_apidoc
    │           │   ├── make.bat.txt
    │           │   └── source
    │           │       ├── _static
    │           │       ├── _templates
    │           │       ├── conf.py
    │           │       ├── conf.py~
    │           │       ├── index.rst
    │           │       ├── modules.rst
    │           │       └── wargame.rst
    │           ├── gameuniterror.py
    │           ├── gameutils.py
    │           ├── hut.py
    │           ├── knight.py
    │           ├── knight.py.patch
    │           └── orcrider.py
    ├── Chapter 5
    │   └── B05034_ch5_SRC_V2
    │       ├── README
    │       ├── src_ch5_python2
    │       │   └── wargame
    │       │       ├── LICENSE
    │       │       ├── __init__.py
    │       │       ├── abstractgameunit.py
    │       │       ├── attackoftheorcs.py
    │       │       ├── gameuniterror.py
    │       │       ├── gameutils.py
    │       │       ├── hut.py
    │       │       ├── knight.py
    │       │       ├── orcrider.py
    │       │       └── test
    │       │           ├── __init__.py
    │       │           ├── mockdemo.py
    │       │           ├── mocktest.py
    │       │           ├── test_hut.py
    │       │           ├── test_wargame.py
    │       │           ├── testcasedemo.py
    │       │           ├── testsuitedemo.py
    │       │           └── wargame_testsuite.py
    │       └── wargame
    │           ├── LICENSE
    │           ├── __init__.py
    │           ├── abstractgameunit.py
    │           ├── attackoftheorcs.py
    │           ├── gameuniterror.py
    │           ├── gameutils.py
    │           ├── hut.py
    │           ├── knight.py
    │           ├── orcrider.py
    │           └── test
    │               ├── __init__.py
    │               ├── mockdemo.py
    │               ├── mocktest.py
    │               ├── test_hut.py
    │               ├── test_wargame.py
    │               ├── testcasedemo.py
    │               ├── testsuitedemo.py
    │               └── wargame_testsuite.py
    ├── Chapter 6
    │   └── B05034_ch6_SRC_V2
    │       ├── LICENSE.txt
    │       ├── README
    │       ├── README~
    │       ├── abstractfactory_pythonic.py
    │       ├── adapterpattern.py
    │       ├── adapterpattern_multiple_methods.py
    │       ├── simplefactory_pythonic.py
    │       ├── simplefactory_pythonic_alternatesolution.py
    │       ├── simplefactory_traditional.py
    │       ├── src_ch6_python2
    │       │   ├── LICENSE.txt
    │       │   ├── abstractfactory_pythonic.py
    │       │   ├── adapterpattern.py
    │       │   ├── adapterpattern_multiple_methods.py
    │       │   ├── simplefactory_pythonic.py
    │       │   ├── simplefactory_pythonic_alternatesolution.py
    │       │   ├── simplefactory_traditional.py
    │       │   ├── strategypattern_pythonic.py
    │       │   └── strategypattern_traditional.py
    │       ├── strategypattern_pythonic.py
    │       └── strategypattern_traditional.py
    ├── Chapter 7
    │   └── B05034_ch7_SRC_V3
    │       ├── LICENSE.txt
    │       ├── README
    │       ├── goldhunt_inefficient.py
    │       ├── profile_ex.py
    │       ├── profiling_goldhunt.py
    │       └── src_ch7_python2
    │           ├── LICENSE.txt
    │           ├── goldhunt_inefficient.py
    │           ├── profile_ex.py
    │           └── profiling_goldhunt.py
    ├── Chapter 8
    │   └── B05034_ch8_SRC_V2
    │       ├── LICENSE.txt
    │       ├── README
    │       ├── compare_memory.py
    │       ├── goldhunt_0.py
    │       ├── goldhunt_pass1.py
    │       ├── goldhunt_pass2.py
    │       ├── goldhunt_pass3.py
    │       ├── misc_performance.py
    │       └── src_ch8_python2
    │           ├── LICENSE.txt
    │           ├── compare_memory.py
    │           ├── goldhunt_0.py
    │           ├── goldhunt_pass1.py
    │           ├── goldhunt_pass2.py
    │           ├── goldhunt_pass3.py
    │           └── misc_performance.py
    ├── Chapter 9
    │   └── B05034_ch9_SRC_V2
    │       ├── LICENSE.txt
    │       ├── README
    │       ├── README~
    │       ├── goldhunt_0.py
    │       ├── goldhunt_pass1.py
    │       ├── goldhunt_pass2.py
    │       ├── goldhunt_pass3.py
    │       ├── goldhunt_pass4.py
    │       ├── goldhunt_pass5.py
    │       ├── goldhunt_pass6_parallel.py
    │       ├── goldhunt_run_master.py
    │       ├── pool_example.py
    │       └── src_ch9_python2
    │           ├── LICENSE.txt
    │           ├── goldhunt_0.py
    │           ├── goldhunt_pass1.py
    │           ├── goldhunt_pass2.py
    │           ├── goldhunt_pass3.py
    │           ├── goldhunt_pass4.py
    │           ├── goldhunt_pass5.py
    │           ├── goldhunt_pass6_parallel.py
    │           ├── goldhunt_run_master.py
    │           └── pool_example.py
    ├── README.MD
    └── Software and Hardware List.pdf

53 directories, 280 files


实例下载地址

Learning Python Application Development(pdf+epub+mobi+code_files).zip

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警