100+Python编程题给你练~(附答案).docx

上传人:安*** 文档编号:73266184 上传时间:2023-02-17 格式:DOCX 页数:7 大小:17.33KB
返回 下载 相关 举报
100+Python编程题给你练~(附答案).docx_第1页
第1页 / 共7页
100+Python编程题给你练~(附答案).docx_第2页
第2页 / 共7页
点击查看更多>>
资源描述

《100+Python编程题给你练~(附答案).docx》由会员分享,可在线阅读,更多相关《100+Python编程题给你练~(附答案).docx(7页珍藏版)》请在taowenge.com淘文阁网|工程机械CAD图纸|机械工程制图|CAD装配图下载|SolidWorks_CaTia_CAD_UG_PROE_设计图分享下载上搜索。

1、100+Python编程题给你练(附答案) 整理 | Just 出品 | Python大本营 春节马上就要到了 怎么能让自己在假期里不落伍 今天 营长给大众准备一个工程 100 编程练习 这些题假如能坚持每天至少完成一道 一定可以帮大众轻松 get Python 的编程技能。目前 这个工程已经获得了 2924 Stars 2468 Forks。 首先 这 100 练习题根据难易程度分为三个等级 Level 1、2 以及 3。下面对怎样定义这三个 Level 进展了讲明 大众可以结合自身的学习才能以及理论经历进展选择。 Level 1 初级。刚入门 Python 或正在学一些根底课程的同学们。通

2、常包含 1 到 2 个类或者函数的问题都可以解决 甚至答案都可能在一些教材中就能找到。 Level 2 中级。已经系统学习过 Python 并且已经有一定的编程背景的同学们 可以解决包含 3 个及以上类或者函数的问题 不过这些答案就在教材找不到了。 Level 3 高级 可以用 Python 中非常丰富的各种库、标准包或者更高级的技术 结合数据构造以及算法 来解决复杂的问题。 其次 每题都有问题描绘、提示以及解决方案。大众一定要先独立完成 然后再看参考答案哦 前 25 题中 Q15、2225 都是 Level 1 的难度 Q617 为 Level 2 Q1822 为 Level 3。大众正好利

3、用这五道题学习、稳固一下根底 然后就开场准备挑战自己吧 下面先给出前五道题 其他的题目大众可以在 Github 上看到 Question1 Level1 Question: Writeaprogramwhichwillfindallsuchnumberswhicharedivisibleby7butarenotamultipleof5, between2000and3200(bothincluded). Thenumbersobtainedshouldbeprintedinacomma-separatedsequenceonasingleline. Hints: Consideruserang

4、e(#begin,#end)method Question2 Level1 Question: Writeaprogramwhichcancomputethefactorialofagivennumbers. Theresultsshouldbeprintedinacomma-separatedsequenceonasingleline. Supposethefollowinginputissuppliedtotheprogram:8 Then,theoutputshouldbe:40320 Hints: Incaseofinputdatabeingsuppliedtothequestion,

5、itshouldbeassumedtobeaconsoleinput. Question3 Level1 Question: Withagivenintegralnumbern,writeaprogramtogenerateadictionarythatcontains(i,i*i)suchthatisanintegralnumberbetween1andn(bothincluded).andthentheprogramshouldprintthedictionary. Supposethefollowinginputissuppliedtotheprogram:8 Then,theoutpu

6、tshouldbe: 1:1,2:4,3:9,4:16,5:25,6:36,7:49,8:64 Hints: Incaseofinputdatabeingsuppliedtothequestion,itshouldbeassumedtobeaconsoleinput. Considerusedict() Question4 Level1 Question: Writeaprogramwhichacceptsasequenceofcomma-separatednumbersfromconsoleandgeneratealistandatuplewhichcontainseverynumber.

7、Supposethefollowinginputissuppliedtotheprogram:34,67,55,33,12,98 Then,theoutputshouldbe: 34 , 67 , 55 , 33 , 12 , 98 ( 34 , 67 , 55 , 33 , 12 , 98 ) Hints: Incaseofinputdatabeingsuppliedtothequestion,itshouldbeassumedtobeaconsoleinput. tuple()methodcanconvertlisttotuple 答案要点 Question5 Level1 Questio

8、n: Defineaclasswhichhasatleasttwomethods: getString:togetastringfromconsoleinput printString:toprintthestringinuppercase. Alsopleaseincludesimpletestfunctiontotesttheclassmethods.Hints: *Solution1* l foriinrange(2000,3201): if(i%7 0)and(i%5! 0): l.append(str(i)print , .join(l) _ *Solution2*deffact(x

9、): ifx 0: return1 returnx*fact(x-1) x int(raw_input()printfact(x) _ *Solution3* n int(raw_input() d dict()foriinrange(1,n 1): di i*iprintd _ *Solution4* values raw_input() l values.split( , ) t tuple(l)printlprintt _ *Solution5*classInputOutString(object): def_init_(self): self.s defgetString(self):

10、 self.s raw_input() defprintString(self): printself.s.upper() strObj InputOutString() strObj.getString() strObj.printString() Use_init_methodtoconstructsomeparameters 更多题目可以查阅 Github 地址 | zhiwehu s:/github /zhiwehu/Python-programming-exercises/blob/master/100%2B%20Python%20challenging%20programming%20exercises.txt 本文为Python大本营原创 转载请微信联络1092722531。 推荐浏览 女程序员 我负责赚钱养家 老公负责貌美如花

展开阅读全文
相关资源
相关搜索

当前位置:首页 > 技术资料 > 工程图纸

本站为文档C TO C交易模式,本站只提供存储空间、用户上传的文档直接被用户下载,本站只是中间服务平台,本站所有文档下载所得的收益归上传人(含作者)所有。本站仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。若文档所含内容侵犯了您的版权或隐私,请立即通知淘文阁网,我们立即给予删除!客服QQ:136780468 微信:18945177775 电话:18904686070

工信部备案号:黑ICP备15003705号© 2020-2023 www.taowenge.com 淘文阁