在好例子网,分享、交流、成长!
您当前所在位置:首页Python 开发实例Python语言基础 → python编程:入门到实践 源代码

python编程:入门到实践 源代码

Python语言基础

下载此实例
  • 开发语言:Python
  • 实例大小:6.04M
  • 下载次数:25
  • 浏览次数:269
  • 发布时间:2020-10-23
  • 实例类别:Python语言基础
  • 发 布 人:大当家大家好
  • 文件格式:.zip
  • 所需积分:2
 相关标签: python 源代码 源代码 编程 入门

实例介绍

【实例简介】

【实例截图】

from clipboard

【核心代码】

《Python编程》源代码文件

├── UPDATES.md
├── appendix_a
│   └── README.md
├── appendix_b
│   ├── Python3.sublime-build
│   └── hello_world.py
├── appendix_d
│   └── hello_world.py
├── chapter_01
│   ├── README.md
│   ├── hello_world.py
│   ├── linux_setup.md
│   ├── osx_setup.md
│   └── windows_setup.md
├── chapter_02
│   ├── apostrophe.py
│   ├── birthday.py
│   ├── comment.py
│   ├── hello_world.py
│   └── name.py
├── chapter_03
│   ├── bicycles.py
│   ├── cars.py
│   └── motorcycles.py
├── chapter_04
│   ├── dimensions.py
│   ├── even_numbers.py
│   ├── foods.py
│   ├── magicians.py
│   ├── numbers.py
│   ├── players.py
│   └── squares.py
├── chapter_05
│   ├── amusement_park.py
│   ├── banned_users.py
│   ├── cars.py
│   ├── magic_number.py
│   ├── toppings.py
│   └── voting.py
├── chapter_06
│   ├── alien.py
│   ├── aliens.py
│   ├── favorite_languages.py
│   ├── many_users.py
│   ├── pizza.py
│   └── user.py
├── chapter_07
│   ├── cities.py
│   ├── confirmed_users.py
│   ├── counting.py
│   ├── even_or_odd.py
│   ├── greeter.py
│   ├── mountain_poll.py
│   ├── parrot.py
│   ├── pets.py
│   └── rollercoaster.py
├── chapter_08
│   ├── formatted_name.py
│   ├── greet_users.py
│   ├── greeter.py
│   ├── making_pizzas.py
│   ├── person.py
│   ├── pets.py
│   ├── pizza.py
│   ├── printing_models.py
│   └── user_profile.py
├── chapter_09
│   ├── car.py
│   ├── dog.py
│   ├── electric_car.py
│   ├── favorite_languages.py
│   ├── my_car.py
│   └── my_cars.py
├── chapter_10
│   ├── alice.py
│   ├── alice.txt
│   ├── division.py
│   ├── file_reader.py
│   ├── greet_user.py
│   ├── little_women.txt
│   ├── moby_dict.txt
│   ├── number_reader.py
│   ├── number_writer.py
│   ├── numbers.json
│   ├── pi_30_digits.txt
│   ├── pi_digits.txt
│   ├── pi_million_digits.txt
│   ├── pi_string.py
│   ├── programming.txt
│   ├── remember_me.py
│   ├── siddhartha.txt
│   ├── word_count.py
│   └── write_message.py
├── chapter_11
│   ├── language_survey.py
│   ├── name_function.py
│   ├── names.py
│   ├── survey.py
│   ├── test_name_function.py
│   └── test_survey.py
├── chapter_12
│   ├── README.md
│   ├── alien_invasion.py
│   ├── bullet.py
│   ├── game_functions.py
│   ├── images
│   │   └── ship.bmp
│   ├── installing_pip.md
│   ├── restore_points
│   │   ├── restore_point_1_ship_moves
│   │   │   ├── alien_invasion.py
│   │   │   ├── game_functions.py
│   │   │   ├── images
│   │   │   │   └── ship.bmp
│   │   │   ├── settings.py
│   │   │   └── ship.py
│   │   ├── restore_point_2_fires_bullets
│   │   │   ├── alien_invasion.py
│   │   │   ├── bullet.py
│   │   │   ├── game_functions.py
│   │   │   ├── images
│   │   │   │   └── ship.bmp
│   │   │   ├── settings.py
│   │   │   └── ship.py
│   │   └── restore_point_3_end_chapter_12
│   │       ├── alien_invasion.py
│   │       ├── bullet.py
│   │       ├── game_functions.py
│   │       ├── images
│   │       │   └── ship.bmp
│   │       ├── settings.py
│   │       └── ship.py
│   ├── settings.py
│   └── ship.py
├── chapter_13
│   ├── alien.py
│   ├── alien_invasion.py
│   ├── bullet.py
│   ├── game_functions.py
│   ├── game_stats.py
│   ├── images
│   │   ├── alien.bmp
│   │   └── ship.bmp
│   ├── settings.py
│   └── ship.py
├── chapter_14
│   ├── alien.py
│   ├── alien_invasion.py
│   ├── bullet.py
│   ├── button.py
│   ├── game_functions.py
│   ├── game_stats.py
│   ├── images
│   │   ├── alien.bmp
│   │   └── ship.bmp
│   ├── scoreboard.py
│   ├── settings.py
│   └── ship.py
├── chapter_15
│   ├── README.md
│   ├── dice_visual.py
│   ├── die.py
│   ├── die_visual.py
│   ├── different_dice.py
│   ├── mpl_squares.py
│   ├── pygal2_update
│   │   ├── dice_visual.py
│   │   ├── die.py
│   │   ├── die_visual.py
│   │   └── different_dice.py
│   ├── random_walk.py
│   ├── rw_visual.py
│   └── scatter_squares.py
├── chapter_16
│   ├── README.md
│   ├── btc-master (16.2)
│   │   ├── README.md
│   │   ├── btc_close_2017.ipynb
│   │   ├── btc_close_2017.json
│   │   ├── btc_close_2017.py
│   │   ├── btc_close_2017_request.json
│   │   ├── btc_close_2017_urllib.json
│   │   └── requirements.txt
│   ├── death_valley_2014.csv
│   ├── highs_lows.py
│   ├── sitka_weather_07-2014.csv
│   └── sitka_weather_2014.csv
├── chapter_17
│   ├── README.md
│   ├── bar_descriptions.py
│   ├── hn_submissions.py
│   ├── pygal2_update
│   │   ├── bar_descriptions.py
│   │   └── python_repos.py
│   └── python_repos.py
├── chapter_18
│   ├── README.md
│   ├── learning_log
│   │   ├── __init__.py
│   │   ├── settings.py
│   │   ├── urls.py
│   │   └── wsgi.py
│   ├── learning_logs
│   │   ├── __init__.py
│   │   ├── admin.py
│   │   ├── migrations
│   │   │   ├── 0001_initial.py
│   │   │   ├── 0002_entry.py
│   │   │   └── __init__.py
│   │   ├── models.py
│   │   ├── templates
│   │   │   └── learning_logs
│   │   │       ├── base.html
│   │   │       ├── index.html
│   │   │       ├── topic.html
│   │   │       └── topics.html
│   │   ├── tests.py
│   │   ├── urls.py
│   │   └── views.py
│   └── manage.py
├── chapter_19
│   ├── learning_log
│   │   ├── __init__.py
│   │   ├── settings.py
│   │   ├── urls.py
│   │   └── wsgi.py
│   ├── learning_logs
│   │   ├── __init__.py
│   │   ├── admin.py
│   │   ├── forms.py
│   │   ├── migrations
│   │   │   ├── 0001_initial.py
│   │   │   ├── 0002_entry.py
│   │   │   ├── 0003_topic_owner.py
│   │   │   └── __init__.py
│   │   ├── models.py
│   │   ├── templates
│   │   │   └── learning_logs
│   │   │       ├── base.html
│   │   │       ├── edit_entry.html
│   │   │       ├── index.html
│   │   │       ├── new_entry.html
│   │   │       ├── new_topic.html
│   │   │       ├── topic.html
│   │   │       └── topics.html
│   │   ├── tests.py
│   │   ├── urls.py
│   │   └── views.py
│   ├── manage.py
│   └── users
│       ├── __init__.py
│       ├── admin.py
│       ├── migrations
│       │   └── __init__.py
│       ├── models.py
│       ├── templates
│       │   └── users
│       │       ├── login.html
│       │       └── register.html
│       ├── tests.py
│       ├── urls.py
│       └── views.py
├── chapter_20
│   ├── Procfile
│   ├── README.md
│   ├── learning_log
│   │   ├── __init__.py
│   │   ├── settings.py
│   │   ├── static
│   │   │   └── placeholder.txt
│   │   ├── templates
│   │   │   ├── 404.html
│   │   │   └── 500.html
│   │   ├── urls.py
│   │   └── wsgi.py
│   ├── learning_logs
│   │   ├── __init__.py
│   │   ├── admin.py
│   │   ├── forms.py
│   │   ├── migrations
│   │   │   ├── 0001_initial.py
│   │   │   ├── 0002_entry.py
│   │   │   ├── 0003_topic_owner.py
│   │   │   └── __init__.py
│   │   ├── models.py
│   │   ├── templates
│   │   │   └── learning_logs
│   │   │       ├── base.html
│   │   │       ├── edit_entry.html
│   │   │       ├── index.html
│   │   │       ├── new_entry.html
│   │   │       ├── new_topic.html
│   │   │       ├── topic.html
│   │   │       └── topics.html
│   │   ├── tests.py
│   │   ├── urls.py
│   │   └── views.py
│   ├── manage.py
│   ├── requirements.txt
│   ├── runtime.txt
│   └── users
│       ├── __init__.py
│       ├── admin.py
│       ├── migrations
│       │   └── __init__.py
│       ├── models.py
│       ├── templates
│       │   └── users
│       │       ├── login.html
│       │       └── register.html
│       ├── tests.py
│       ├── urls.py
│       └── views.py
└── cheat_sheets
    ├── README.md
    ├── beginners_python_cheat_sheet_pcc.pdf
    ├── beginners_python_cheat_sheet_pcc_all.pdf
    ├── beginners_python_cheat_sheet_pcc_classes.pdf
    ├── beginners_python_cheat_sheet_pcc_dictionaries.pdf
    ├── beginners_python_cheat_sheet_pcc_files_exceptions.pdf
    ├── beginners_python_cheat_sheet_pcc_functions.pdf
    ├── beginners_python_cheat_sheet_pcc_if_while.pdf
    ├── beginners_python_cheat_sheet_pcc_lists.pdf
    ├── beginners_python_cheat_sheet_pcc_pygame.pdf
    └── beginners_python_cheat_sheet_pcc_testing.pdf

62 directories, 263 files


实例下载地址

python编程:入门到实践 源代码

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

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

网友评论

发表评论

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

查看所有0条评论>>

小贴士

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

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

关于好例子网

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

;
报警