离python二级考还有十几天,吓的我赶紧买了本python教程
Posted dmsbknxd
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了离python二级考还有十几天,吓的我赶紧买了本python教程相关的知识,希望对你有一定的参考价值。
不多说,前面粗略的看一下,直接进入实例部分,敲代码实践才是硬道理
实例1 斐波那契数列
#feibonaqieshulie #这英文我是真的不会,不过拼音也勉强够用
a,b = 0,1
while a<1000:
print(a,end=",")
a,b = b,a+b
实例2 简单圆面积的计算
#Area yuan
r = 20
Area = 3.14
15*(r*r)
print("{:.2f}".format(Area))
实例3 绘制五角星(有点小炫酷)
#DrawStar.py
from turtle import * #turtle为python制图的一种函数
color(‘red‘,‘red‘) #color里面前面类似画五角星的笔,后面则是框架画好之后一桶颜料倒上去
begin_fill()
for i in range(5):
fd(200)
rt(144)
end_fill()
done()
实例4 一个程序运行的时间
#calRunTime.py
import time
limit = 10*1000*1000
start = time.perf_counter()
while True:
limit -= 1
if limit <=0:
break
delta = time.perf_counter() - start
print("程序运行的时间是:{}秒".format(delta))
实例5 七彩圆圈
#DrawSevenColorfulCorcles.py
import turtle
colors = [‘red‘,‘orange‘,‘yellow‘,‘green‘,‘blue‘,‘indigo‘,‘purple‘]
for i in range(7):
c=colors[i]
turtle.color(c,c)
turtle.begin_fill()
turtle.rt(360/7)
turtle.circle(50)
turtle.end_fill()
turtle.done()
以上是关于离python二级考还有十几天,吓的我赶紧买了本python教程的主要内容,如果未能解决你的问题,请参考以下文章