turtle练习

Posted python-cat

tags:

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

一、等边三角形方法

import turtle
import time
t = turtle.Turtle()
def sanjiao(lenght,color):
    t.fillcolor(color)
    t.begin_fill()
    jiaodu = [240,120,120]
    for i in jiaodu:
        t.lt(i)
        t.fd(lenght)
    t.end_fill()
sanjiao(100,"red")
time.sleep(10)

  

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

Python输入输出练习,运算练习,turtle初步练习

条件循环函数定义 练习

条件循环函数定义 练习

turtle库基础练习

turtle库基础练习

turtle库基础练习