python turtle画图

Posted amcomputer

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python turtle画图相关的知识,希望对你有一定的参考价值。

一 基本命令

二 具体案例

python



'''
Turtle是一种渲染器,和窗体程序
.表示成员访问号

'''
import turtle

DISTANCE = 100

# 1 设置画布大小 (600,600,"red") 宽 高 背景颜色
#turtle.screensize(800,600)

# 2设置起始坐标 (0,0) 左上角 (x,y) 用得比较多,也可以设置画布大小
turtle.setup(800,600,0,0)

# 3 turtle设置快慢 0到100 速度增加
turtle.speed(1)

turtle.pendown()

# 4 画迷宫
# for i in range(4*10):
#     turtle.forward(10*i)
#     turtle.right(90)

# 5 画圆心 半径为正,画笔左边,画笔右边画园
turtle.circle(50)
turtle.circle(-50)

# 6 turtle.color("red","green") 画笔自己颜色和填充颜色
turtle.color("red", "green")

turtle.begin_fill()
turtle.circle(-50)
turtle.end_fill()

turtle.fillcolor("red")
# 表示所有工作都已经做完了; 让窗体保持运行状态
turtle.done()


print("hello world")


def do():
    pass


if __name__=="__main__":
    do()

以上是关于python turtle画图的主要内容,如果未能解决你的问题,请参考以下文章

Python用turtle模块画图

python turtle画图怎么连接两点

有大神可以用python的turtle模块画图吗,求解

使用Python的turtle(海龟)模块画图

python画图之“小海龟”turtle

python画图之“小海龟”turtle