介绍Python语言的入门书,循序渐进,实例和练习数量很多。
英文原版。
《经典原版书库:Python语言程序设计(英文版)》以“基础先行”方法介绍基本程序设计概念和方法,帮助学生循序渐进地学习所有必需和重要的基本概念。
以“问题驱动”方法讲授程序设计技术,强调问题求解,而非语法。
通过广泛的趣味性实例(涉及数学、自然科学、商业、金融、游戏、动画和多媒体领域)来激发学生的学习兴趣,为求解这些问题,适时地引入相关的语法和库。
可以灵活介绍GUI相关主题。
第1~6章使用内置的Turtle图形模块,其余部分使用Tkinter,这两种工具都是简单、易学的程序设计教学工具。
每章的开始都有GUI实例,每章末尾还有专门的GUI练习。
2024/6/20 16:03:01 12.72MB Python
1
StartingOutwithPython,GlobalEditionBy作者:TonyGaddis(author)ISBN-10书号:1292225750ISBN-13书号:9781292225753Edition版本:4thedition出版日期:2018-04-20Pages:748ForcoursesinPythonprogramming.Aclearandstudent-friendlyintroductiontothefundamentalsofPythonInStartingOutwithPython,4thEdition,TonyGaddis’accessiblecoverageintroducesstudentstothebasicsofprogramminginahigh-levellanguage.Python,aneasy-to-learnandincreasinglypopularobject-orientedlanguage,allowsreaderstobecomecomfortablewiththefundamentalsofprogrammingwithoutthetroublesomesyntaxthatcanbechallengingfornovices.WiththeknowledgeacquiredusingPython,studentsgainconfidenceintheirskillsandlearntorecognizethelogicbehinddevelopinghigh-qualityprograms.StartingOutwithPythondiscussescontrolstructures,functions,arrays,andpointersbeforeobjectsandclasses.AswithallGaddistexts,clearandeasy-to-readcodelistings,conciseandpracticalreal-worldexamples,focusedexplanations,andanabundanceofexercisesappearineverychapter.Updatestothe4thEditionincluderevised,improvedproblemsthroughout,andnewTurtleGraphicssectionsthatprovideflexibilityasassignable,optionalmaterial.PrefaceChapter1IntroductiontoComputersandProgrammingChapter2Input,Processing,andOutputChapter3DecisionStructuresandBooleanLogicChapter4RepetitionStructuresChapter5FunctionsChapter6FilesandExceptionsChapter7ListsandTuplesChapter8MoreAboutStringsChapter9DictionariesandSetsChapter10ClassesandObject-OrientedProgrammingChapter11InheritanceChapter12RecursionChapter13GUlProgrammingAppendixAInstalingPythonAppendixBIntroductiontoIDLEAppendixCTheASCllCharacterSetAppendixDPredefinedNamedColorsAppendixEMoreAbouttheimportStatementAppendixFInstallingModuleswiththepipUtilityAppendixGAnswerstoCheckpoints
2023/12/9 12:26:18 6.02MB Python
1
实验一:Python程序设计之初窥门径2实验二:Python程序设计之结构与复用7实验三:Python程序设计之组合数据类型11实验四:Python程序设计之文件15**********************************实验一#正方形螺旋线importturtleturtle.speed("fastest")turtle.pensize(2)forxinrange(100):turtle.forward(2*x)turtle.left(90)#斜螺旋线importturtleturtle.speed("fastest")turtle.pensize(2)forxinrange(100):turtle.forward(2*x)turtle.left(91)#色彩斜螺旋线importturtleturtle.speed("fastest")turtle.pensize(2)colors=['red','yellow','purple','blue']
2023/9/8 20:08:19 8.35MB py
1
书名:ROS机器人编程作者:表允晳赵汉哲郑黎蝹林泰勋≆https://github.com/ROBOTIS-GIT/robotis_tools→第3章≆https://github.com/ROBOTIS-GIT/ros_tutorials→第4,第7,第13章≆https://github.com/ROBOTIS-GIT/DynamixelSDK→第8,第10章≆https://github.com/ROBOTIS-GIT/dynamixel-workbench→第8,第13章≆https://github.com/ROBOTIS-GIT/dynamixel-workbench-msgs→第8,第13章≆https://github.com/ROBOTIS-GIT/hls_lfcd_lds_driver→第8,第10,第11章≆https://github.com/ROBOTIS-GIT/OpenCR→第9,第12章≆https://github.com/ROBOTIS-GIT/turtlebot3→第10,第11章≆https://github.com/ROBOTIS-GIT/turtlebot3_msgs→第10,第11章≆https://github.com/ROBOTIS-GIT/turtlebot3_simulations→第10,第11章≆https://github.com/ROBOTIS-GIT/turtlebot3_applications→第10,第11章≆https://github.com/ROBOTIS-GIT/turtlebot3_deliver→第12章≆https://github.com/ROBOTIS-GIT/open_manipulator→第13章
1
Python2018试验指点书,word版本,内容搜罗试验一:Turtle图形绘制,试验二:底子数据尺度的使用,试验三:法度圭表标准抑制结构,试验四:函数以及代码复用,试验五:组合数据尺度的使用。
.
2023/4/1 21:11:34 1.38MB Python 实验指导
1
海龟作图,程序虽短,但功能齐全!!设置海龟类型的基本操作为:procedureStartTurtleGraphlcs;
{显示作图窗口,并在窗口内写出本人的姓名、上机号和实验题号。
}procedureStartTurtle;
{令海龟处于作图的初始状态。
即显示作图窗口,并将海龟定位在窗口正中;
}{置画笔状态为落笔、龟头朝向为0度(正东方向)。
}procedurePenUp;
{改变画笔状态为抬笔。
从此时起,海龟移动将不在屏幕上作图。
}procedurePenDown;
{改变画笔状态为落笔。
从此时起,海龟移动将在屏幕上作图。
}functionTurtleHeadins:inteser;
{前往海龟头当前朝向的角度。
}functionTurtlePos:PaPoint;
{前往海龟的当前位置。
}procedureMove(steps:Integer);
 {依照海龟头的当前朝向,向前移动海龟steps步。
}procedureTurn(degrees:Integer);
{改变海龟头的当前朝向,逆时针旋转degrees度。
}procedureMoveTTo(newPos:aPolnt);
{将海龟移动到新的位置newPos。
如果是落笔状态,则同时作图。
2018/1/10 17:07:28 5KB 海龟作图 C C++
1
turtlebot3的硬件组装手册,这个是burger的安装手册,从官网wiki上下的,由于是放在google上的特作此备份。
2015/5/16 9:57:52 8.31MB turtlebot3
1
turtle.lua:LÖVE的Turtle图形库
2017/3/19 3:34:25 10.13MB drawing lua-library lua simple
1
学习CSDN公众号推荐python学习材料,继续完善学习,应用turtle工具绘画小猪佩奇
2021/6/14 3:30:36 3KB 小猪佩奇 python turtle
1
(含源码及报告)本程序分析了自2016年到2021年(外加)每年我国原油加工的产量,并且分析了2020年全国各地区原油加工量等,含饼状图,柱状图,折线图,数据在地图上显示。
运转本程序需要requests、bs4、csv、pandas、matplotlib、pyecharts库的支持,如果缺少某库请自行安装后再运转。
文件含6个excel表,若干个csv文件以及一个名字为render的html文件(需要用浏览器打开),直观的数据处理部分是图片以及html文件,可在地图中显示,数据处理的是excel文件。
不懂可以扫文件中二维码在QQ里面问。
2022/9/30 16:31:44 29.75MB 爬虫 python 源码软件 开发语言
1
在日常工作中,钉钉打卡成了我生活中不可或缺的一部分。然而,有时候这个看似简单的任务却给我带来了不少烦恼。 每天早晚,我总是得牢记打开钉钉应用,点击"工作台",再找到"考勤打卡"进行签到。有时候因为工作忙碌,会忘记打卡,导致考勤异常,影响当月的工作评价。而且,由于我使用的是苹果手机,有时候系统更新后,钉钉的某些功能会出现异常,使得打卡变得更加麻烦。 另外,我的家人使用的是安卓手机,他们也经常抱怨钉钉打卡的繁琐。尤其是对于那些不太熟悉手机操作的长辈来说,每次打卡都是一次挑战。他们总是担心自己会操作失误,导致打卡失败。 为了解决这些烦恼,我开始思考是否可以通过编写一个全自动化脚本来实现钉钉打卡。经过一段时间的摸索和学习,我终于成功编写出了一个适用于苹果和安卓系统的钉钉打卡脚本。
2024-04-09 15:03 15KB 钉钉 钉钉打卡