我是靠谱客的博主 认真康乃馨,最近开发中收集的这篇文章主要介绍python怎么安装turtle,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

turtle库是Python语言中一个很流行的绘制图像的函数库,想象一个小乌龟,在一个横轴为x、纵轴为y的坐标系原点,(0,0)位置开始,它根据一组函数指令的控制,在这个平面坐标系中移动,从而在它爬行的路径上绘制了图形。

安装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怎么安装turtle的全部内容,希望文章能够帮你解决python怎么安装turtle所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(81)

评论列表共有 0 条评论

立即
投稿
返回
顶部