时间:2021-07-01 10:21:17 帮助过:50人阅读
安装turtle(推荐学习:Python视频教程)
Python2安装命令:
- pip install turtule
Python3安装命令:
- pip3 install turtle
绘图举例
太阳花
- import turtle as timport time
- t.color("red", "yellow")
- t.speed(10)
- t.begin_fill()for _ in range(50):
- t.forward(200)
- t.left(170)
- end_fill()
- time.sleep(1)
绘制五角星
- import turtleimport time
- turtle.pensize(5)
- turtle.pencolor("yellow")
- turtle.fillcolor("red")
- turtle.begin_fill()for _ in range(5):
- turtle.forward(200)
- turtle.right(144)
- turtle.end_fill()
- time.sleep(2)
- turtle.penup()
- turtle.goto(-150,-120)
- turtle.color("violet")
- turtle.write("Done", font=('Arial', 40, 'normal'))
- time.sleep(1)
更多Python相关技术文章,请访问Python教程栏目进行学习!
以上就是python怎么安装turtle的详细内容,更多请关注Gxl网其它相关文章!