Python模块---海龟(turtle)

1、小海龟模块

在Python3版本中,新增加了一个模块叫做turtle(海龟),专门用于绘制图形图像

2、模块如何使用

① 导入模块
import turtle
​
② 使用turtle模块中已经定义好的方法
turtle.forward(数值)  # 从左向右,绘制一条指定长度的横线(像素) 1980 * 1024

3、手绘一条直线

import turtle
import time
​
# 绘制一条100像素的横线
turtle.forward(100)
​
# 休眠10s
time.sleep(10)

4、使用turtle模块+for循环绘制五角星

import turtle
import time
​
# 循环5次
turtle.pencolor('red')
for i in range(5):
    turtle.forward(100)
    turtle.right(144)
​
time.sleep(10)

 Python模块---海龟(turtle)_第1张图片

 

你可能感兴趣的:(Python基础,python,pycharm,几何学)