深入浅出程序设计(影印版) 下载 pdf 百度网盘 epub 免费 2025 电子书 mobi 在线
深入浅出程序设计(影印版)电子书下载地址
内容简介:
通过此书,你将学习:
你是否曾经希望可以从一本书里学习如何编程?如果你以前没有编程经验,你可能想知道该从哪里开始。
《深入浅出程序设计》介绍了编写计算机程序的核心概念:变量、判断、循环、函数与对象——无论运用哪种编程语言,都能在动态且多用途的Python语言中使用具体示例和练习来运用并巩固这些概念。
学习基本的工具来开始编写你感兴趣的程序,而不是其他人认为你应该使用的通用软件,并对软件能做什么(不能做什么)有一个更好的了解。当你完成这些,你就拥有了必要的基础去使用任何一种你需要或想要学习的语言或软件项目。
本书的特别之处在于:
我们认为你的时间如此宝贵以至于不应该花费在为新概念伤脑筋上面。《深入浅出程序设计》用*的认知科学和学习理论打造多感官的学习体验,运用适合大脑工作方式的直观的格式编排,而不是令人昏昏欲睡的密密麻麻的文字。
书籍目录:
Intro
1 Starting to Code: Finding Your Way
2 Textual Data: Every String Has Its Place
3 Functions: Let's Get Organized
4 Data Files and Arrays: Sort It Out
5 Hashes and Databases: Putting Data in Its Place
6 Modular Programming: Keeping Things Straight
7 Building a Graphical User Interface: Going All Gooey
8 GUIs and Data: Data Entry Widgets
8 1/2 Exceptions and Message Boxes: Get the Message?
9 Graphical Interface Elements: Selecting the Right Tool
10 Custom Widgets and Classes: With an Object in Mind
i Leftovers: The Top Ten Things (We Didn't Cover)
作者介绍:
暂无相关内容,正在全力查找中
出版社信息:
暂无出版社相关信息,正在全力查找中!
书籍摘录:
暂无相关书籍摘录,正在全力查找中!
在线阅读/听书/购买/PDF下载地址:
原文赏析:
print('Welcome!')
g = input('Guess the number: ')
guess = int(g)
if guess == 5:
print('You win!')
else:
print('You lose!')
print('Game over!')
The editor saves the code you write into a file on your hard disk.The code(sometimes called the source code) is just text, and it can be written and read by humans.But computers can't process text meant for humans, at least not very well.That's why we need a tool to translate the human-friendly source code into the binary 1s and 0s that computers do understand.That's what an interpreter does.In this book,an interpreter called Python is used.
Fortunately,Python3 comes with a built-in application called IDLE,which does both jobs and more.IDLE enables you to write and edit Python code,it translates this code into binary form, and finally, it runs the Python3 program.Because of this,IDLE is known as an Integrated Development Environment.
A path refers to the set of instructions that the computer will actually follow(or excute). Your code is like a street network, with lots of sections of code connected together just like the streets in a city.When you drive through a city, you make decisions as to which streets you drive down by turning left or right at different intersections.It's the same for a program.It also needs to make decisions from time to time as to which path to take, but for your code,it is like driving along a road, it's executing a particular path.
Your program makes a decision using a branch condition.A branch condition has the value true or false.If the branch condition is true,it runs the code on the branch.And if the branch condition is false,it runs the code on the false branch.
Python uses indents to connect a sequence of commands together to form paths.So how you connect branches together?You simply indent the second branch in by one more level.(Intends matter in python.Be careful how you indent code in Python;if you don't indent your code correctly,your code might do something wildly different from what you expect.).By default IDLE idents using 4 SPACES.If you press TAB,IDLE converts it into SPACE characters.
其它内容:
编辑推荐
本书的两位作者已经精心创作了“深入浅出”系列**佳作。
你是否曾经希望可以从一本书里学习如何编程?如果你以前没有编程经验,你可能想知道该从哪里开始。
在《深入浅出程序设计》里,你将学习如何编写代码,让你的计算机按你的方式做事。
书籍介绍
《深入浅出程序设计(影印版)》通过此书,你将学习:你是否曾经希望可以从一本书里学习如何编程?如果你以前没有编程经验,你可能想知道该从哪里开始。
《深入浅出程序设计》介绍了编写计算机程序的核心概念:变量、判断、循环、函数与对象——无论运用哪种编程语言,都能在动态且多用途的Python语言中使用具体示例和练习来运用并巩固这些概念。
学习基本的工具来开始编写你感兴趣的程序,而不是其他人认为你应该使用的通用软件,并对软件能做什么(不能做什么)有一个更好的了解。当你完成这些,你就拥有了必要的基础去使用任何一种你需要或想要学习的语言或软件项目。
《深入浅出程序设计(影印版)》的特别之处在于:
我们认为你的时间如此宝贵以至于不应该花费在为新概念伤脑筋上面。《深入浅出程序设计》用最新的认知科学和学习理论打造多感官的学习体验,运用适合大脑工作方式的直观的格式编排,而不是令人昏昏欲睡的密密麻麻的文字。
网站评分
书籍多样性:3分
书籍信息完全性:8分
网站更新速度:5分
使用便利性:8分
书籍清晰度:7分
书籍格式兼容性:9分
是否包含广告:5分
加载速度:3分
安全性:6分
稳定性:4分
搜索功能:3分
下载便捷性:5分
下载点评
- 章节完整(552+)
- 傻瓜式服务(598+)
- 体验好(148+)
- 内容齐全(248+)
- 目录完整(604+)
- 赚了(492+)
- 下载快(189+)
- 愉快的找书体验(676+)
- 体验满分(387+)
- 种类多(484+)
- 一星好评(342+)
- 实惠(546+)
下载评价
- 网友 师***怡: ( 2024-12-23 03:06:57 )
说的好不如用的好,真心很好。越来越完美
- 网友 丁***菱: ( 2024-12-22 01:41:19 )
好好好好好好好好好好好好好好好好好好好好好好好好好
- 网友 宫***凡: ( 2024-12-24 20:57:40 )
一般般,只能说收费的比免费的强不少。
- 网友 通***蕊: ( 2024-12-20 16:02:43 )
五颗星、五颗星,大赞还觉得不错!~~
- 网友 宫***玉: ( 2024-12-22 23:55:47 )
我说完了。
- 网友 家***丝: ( 2025-01-10 08:38:47 )
好6666666
- 网友 孙***夏: ( 2024-12-30 03:10:46 )
中评,比上不足比下有余
- 网友 方***旋: ( 2025-01-05 15:14:01 )
真的很好,里面很多小说都能搜到,但就是收费的太多了
- 网友 后***之: ( 2025-01-08 05:31:39 )
强烈推荐!无论下载速度还是书籍内容都没话说 真的很良心!
- 网友 田***珊: ( 2024-12-19 17:32:21 )
可以就是有些书搜不到
- 网友 菱***兰: ( 2024-12-23 06:26:40 )
特好。有好多书
- 网友 温***欣: ( 2025-01-07 18:43:59 )
可以可以可以
- 网友 饶***丽: ( 2025-01-17 20:58:59 )
下载方式特简单,一直点就好了。
- 网友 养***秋: ( 2025-01-06 16:50:11 )
我是新来的考古学家
喜欢"深入浅出程序设计(影印版)"的人也看了
正版书籍 电路板组装技术与应用 林定皓PCB先进制造技术电子产品制造与代工行业电力电子技术工程师教程工业技术表面处理焊接技术 下载 pdf 百度网盘 epub 免费 2025 电子书 mobi 在线
CAD/CAM软件工程应用实例丛书 下载 pdf 百度网盘 epub 免费 2025 电子书 mobi 在线
华与华超级符号案例集2 下载 pdf 百度网盘 epub 免费 2025 电子书 mobi 在线
二十个站台(精) 下载 pdf 百度网盘 epub 免费 2025 电子书 mobi 在线
理查德·罗杰斯:未来建筑 (瑞士)鲍威尔 编,耿智 等译 大连理工大学出版社【正版书】 下载 pdf 百度网盘 epub 免费 2025 电子书 mobi 在线
- 偷窥者 下载 pdf 百度网盘 epub 免费 2025 电子书 mobi 在线
- 动脉粥样硬化性血管疾病 下载 pdf 百度网盘 epub 免费 2025 电子书 mobi 在线
- 新编简明英语缩略语手册 下载 pdf 百度网盘 epub 免费 2025 电子书 mobi 在线
- 轻松学跳肚皮舞 下载 pdf 百度网盘 epub 免费 2025 电子书 mobi 在线
- UNIX 网络管理 下载 pdf 百度网盘 epub 免费 2025 电子书 mobi 在线
- 9787201088167 下载 pdf 百度网盘 epub 免费 2025 电子书 mobi 在线
- 高分读书法 下载 pdf 百度网盘 epub 免费 2025 电子书 mobi 在线
- 公司法律顾问实务指引 下载 pdf 百度网盘 epub 免费 2025 电子书 mobi 在线
- “内幕交易”的法律透视 下载 pdf 百度网盘 epub 免费 2025 电子书 mobi 在线
- 23秋季第6版小学生绘本课堂六年级上册 语文练习书部编版课本同步练习册阅读理解训练学习参考资料(六三制) 下载 pdf 百度网盘 epub 免费 2025 电子书 mobi 在线
书籍真实打分
故事情节:8分
人物塑造:6分
主题深度:5分
文字风格:9分
语言运用:7分
文笔流畅:4分
思想传递:6分
知识深度:5分
知识广度:9分
实用性:6分
章节划分:4分
结构布局:9分
新颖与独特:7分
情感共鸣:8分
引人入胜:6分
现实相关:8分
沉浸感:4分
事实准确性:7分
文化贡献:6分