计算机国考二级Python教材实例1
Posted 老菜苗
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了计算机国考二级Python教材实例1相关的知识,希望对你有一定的参考价值。
第一章
实例1.1斐波那契数列计算
1 #CalFibonacci.py 2 a,b=0,1 3 while a<1000: 4 print(a,end=‘,‘) 5 a,b=b,a+b
实例1.2 圆面积的计算
1 #CalCircleArea.py 2 r=25 3 area=3.1415*r*r 4 print(area) 5 print("{:.2f}".format(area))
实例1.3绘制五角红星
1 #DrawStar.py 2 from turtle import* 3 color(‘red‘,‘red‘) 4 begin_fill() 5 for i in range(5): 6 fd(200) 7 rt(144) 8 end_fill() 9 done()
实例1.4 程序运行计时
1 #CalRunTime.py 2 import time 3 limit=10*1000*1000 4 start=time.perf_counter() 5 while True: 6 limit-=1 7 if limit<=0: 8 break 9 delta=time.perf_counter()-start 10 print("程序运行时间是:{}秒。".format(delta))
实例1.5绘制七彩圆圈
1 #DrawSevenColorfulCircles.py 2 import turtle 3 colors=[‘red‘,‘orange‘,‘yellow‘,‘green‘,‘blue‘,‘indigo‘,‘purple‘] 4 for i in range(7): 5 c=colors[i] 6 turtle.color(c,c) 7 turtle.begin_fill() 8 turtle.rt(360/7) 9 turtle.circle(50) 10 turtle.end_fill() 11 turtle.done()
以上是关于计算机国考二级Python教材实例1的主要内容,如果未能解决你的问题,请参考以下文章
2020年全国计算机等级考试《二级C语言程序设计》全套资料教材+历年真题+题库+考前冲刺
离python二级考还有十几天,吓的我赶紧买了本python教程
计算机二级要报名了。报哪个呢?报C语言吧,比office好考容易得多!C语言题库免费,1月学会