python函数

range:用于返回一个可迭代的整数序列对象,一般用在for循环中,字符串、列表、元组、字典都是可迭代的对象。range(6)会生成012345,range(1,6)会生成12345

turtle:绘图库(模块)

说明 使用方法 例子
使用turtle来调用函数 import turtle turtle.函数
使用t来调用函数 import turtle as t t.函数
直接使用绘图函数 form turtle import * 函数
speed() shape() forward() backward() right() left() pencolor() circle()
绘图速度0到10,0最快 画笔形状 前进像素距离 回退像素距离 右转角度 左转角度 画笔的颜色 绘制圆形

 

 

 

 

 

正方形

for i in range(4):
    turtle.speed(10)
    turtle.forward(100)
    turtle.right(90)

五边形

for i in range(5):
    turtle.speed(10)
    turtle.forward(100)
    turtle.right(72)

五角星

for i in range(5):
    turtle.speed(10)
    turtle.forward(100)
    turtle.right(144)

圆环

for i in range(10):
    turtle.circle(150)
    turtle.left(36)

 

上一篇:redis skiplist性能实验


下一篇:Wireguard笔记(三) lan-to-lan子网穿透和多网段并存