python之海龟绘图

海龟绘图(turtle)是一个Python内置的绘图库,也被称为“Turtle Graphics”或简称“Turtles”。它采用了一种有趣的绘图方式,模拟一只小海龟在屏幕上爬行,而小海龟爬行的路径就形成了绘制的图形。这种绘图方式最初源自20世纪60年代的Logo编程语言,后来一些Python程序员构建了turtle库,使得其他程序员可以通过简单的import turtle命令,在Python中使用海龟作图。

今天就来简单举几个例子!

一,小猪佩奇

from turtle import *


def nose(x, y):  # 鼻子
    penup()  # 提起笔
    goto(x, y)  # 定位
    pendown()  # 落笔,开始画
    setheading(-30)  # 将乌龟的方向设置为to_angle/为数字(0-东、90-北、180-西、270-南)
    begin_fill()  # 准备开始填充图形
    a = 0.4
    for i in range(120):
        if 0 <= i < 30 or 60 <= i < 90:
            a = a + 0.08
            left(3)  # 向左转3度
            forward(a)  # 向前走a的步长
        else:
            a = a - 0.08
            left(3)
            forward(a)
    end_fill()  # 填充完成

    penup()
    setheading(90)
    forward(25)
    setheading(0)
    forward(10)
    pendown()
    pencolor(255, 155, 192)  # 画笔颜色
    setheading(10)
    begin_fill()
    circle(5)
    color(160, 82, 45)  # 返回或设置pencolor和fillcolor
    end_fill()

    penup()
    setheading(0)
    forward(20)
    pendown()
    pencolor(255, 155, 192)
    setheading(10)
    begin_fill()
    circle(5)
    color(160, 82, 45)
    end_fill()


def head(x, y):  # 头
    color((255, 155, 192), "pink")
    penup()
    goto(x, y)
    setheading(0)
    pendown()
    begin_fill()
    setheading(180)
    circle(300, -30)
    circle(100, -60)
    circle(80, -100)
    circle(150, -20)
    circle(60, -95)
    setheading(161)
    circle(-300, 15)
    penup()
    goto(-100, 100)
    pendown()
    setheading(-30)
    a = 0.4
    for i in range(60):
        if 0 <= i < 30 or 60 <= i < 90:
            a = a + 0.08
            lt(3)  # 向左转3度
            fd(a)  # 向前走a的步长
        else:
            a = a - 0.08
            lt(3)
            fd(a)
    end_fill()


def cheek(x, y):  # 腮
    color((255, 155, 192))
    penup()
    goto(x, y)
    pendown()
    setheading(0)
    begin_fill()
    circle(30)
    end_fill()


def mouth(x, y):  # 嘴
    color(239, 69, 19)
    penup()
    goto(x, y)
    pendown()
    setheading(-80)
    circle(30, 40)
    circle(40, 80)


def setting():  # 参数设置
    pensize(4)
    hideturtle()  # 使乌龟无形(隐藏)
    colormode(255)  # 将其设置为1.0或255.随后 颜色三元组的r,g,b值必须在0 .. cmode范围内
    color((255, 155, 192), "pink")
    setup(840, 500)
    speed(100)


def ears(x, y):
    color((255, 155, 192), "pink")
    penup()
    goto(x, y)
    pendown()
    begin_fill()
    setheading(100)
    circle(-50, 50)
    circle(-10, 120)
    circle(-50, 54)
    end_fill()
    penup()
    setheading(90)
    forward(-12)
    setheading(0)
    forward(30)
    pendown()
    begin_fill()
    setheading(100)
    circle(-50, 50)
    circle(-10, 120)
    circle(-50, 56)
    end_fill()


def eyes(x, y):
    color((255, 155, 192), "pink")
    fillcolor('white')
    penup()
    goto(x, y)
    pendown()
    begin_fill()
    setheading(0)
    circle(20)
    end_fill()
    color((255, 155, 192))
    fillcolor('white')
    penup()
    goto(x, y)
    begin_fill()
    forward(80)
    pendown()
    setheading(100)
    circle(20)
    end_fill()
    color('black')
    penup()
    goto(x-7, y+13)
    pendown()
    begin_fill()
    setheading(0)
    circle(5)
    end_fill()
    penup()
    goto(x, y)
    begin_fill()
    forward(60)
    pendown()
    setheading(100)
    circle(5)
    end_fill()


def body(x, y):
    width(5)
    color('firebrick')
    list = ['orangered', 'firebrick']

    up()
    goto(x, y)
    down()
    setheading(-105)
    begin_fill()
    fillcolor(list[0])
    circle(250, 30)
    setheading(0)
    forward(138)
    setheading(75)
    circle(250, 30)
    end_fill()
    setheading(-45)
    forward(70)
    begin_fill()
    fillcolor(list[1])
    circle(5)
    end_fill()
    up()
    goto(x, y)
    down()
    setheading(-145)
    forward(70)
    begin_fill()
    circle(5)
    end_fill()
    up()
    goto(x+20, y-250/2-4)
    down()
    setheading(270)
    forward(50)
    left(90)
    width(10)
    color('black')
    forward(13)
    width(5)
    color('firebrick')
    up()
    goto(x + 120, y - 250 / 2-4)
    down()
    setheading(270)
    forward(50)
    left(90)
    width(10)
    color('black')
    forward(13)


def main():
    body(-25, -15)
    setting()  # 画布、画笔设置
    nose(-100, 100)  # 鼻子
    head(-69, 167)  # 头
    ears(0, 160)  # 耳朵
    eyes(-15, 100)  # 眼睛
    cheek(80, 10)  # 腮
    mouth(-20, 30)  # 嘴
    done()




if __name__ == '__main__':
    main()

运行结果:

二,哆啦A梦

import turtle as t

t2=t.Turtle()

def funa(x,y):
    t.pu()
    t.goto(x,y)
    t.dot(10,'red')
    t2.clear()
    t2.write('{},{}'.format(x,y),align='center',font=('黑体',20,'bold'))

def huxian(x,y,r,a):
    t.pu()
    t.goto(x,y)
    t.pd()
    t.circle(r,a)

def line2(x1,y1,x2,y2,c='black',size=1):
    t.color(c)
    t.pensize(size)
    t.pu()
    t.goto(x1,y1)
    t.pd()
    t.goto(x2,y2)


def sanjiao(x,y,m,c,fc='black'):
    t.color(fc,c)
    t.pu()
    t.goto(x,y)
    t.pd()
    t.seth(90)
    t.begin_fill()
    t.circle(m,180)
    t.end_fill()
        

def tuoyuan(x,y,st,s,c,b,ps=1,ang=0):
    t.pensize(ps)
    t.pu()
    t.goto(x,y)
    t.pd()
    t.seth(ang)

    a=st
    t.color(c,b)
    t.begin_fill()
    for i in range(120):
        if 0<=i<30 or 60<=i<90:
            a+=0.01*s
            t.lt(3)
            t.fd(a)
        else:
            a-=0.01*s
            t.lt(3)
            t.fd(a)
    t.end_fill()

def head():
    tuoyuan(0,-44,7.0,0.0,'black','#00A0DE')
    tuoyuan(0,-49,6.0,0.03,'black','white')


def eyes():
    tuoyuan(-25,133,1.0,4.0,'black','white')
    tuoyuan(32,133,1.0,4.0,'black','white')
    tuoyuan(-15,161,0.0,2,'black','black',1)          
    tuoyuan(23,161,0.0,2,'black','black',1)
    tuoyuan(-15,161,0.0,1,'black','white',1)    
    tuoyuan(23,161,0.0,1,'black','white',1)    

def huzi():
    tuoyuan(-77,118,0.7,0,'#FFC5C8','#FFC5C8')
    tuoyuan(75,113,0.7,0,'#FFC5C8','#FFC5C8')    
    line2(-53,118,-136,149)
    line2(-50,95,-146,95)
    line2(-51,78,-139,52)
    line2(54,118,135,145)
    line2(55,95,150,95)
    line2(52,79,141,53)  


def nose():
    tuoyuan(4,100,1,0.1,'black','#DB3A49')
    #line2(4,101,4,43)
    t.color('black')
    t.pu()
    t.goto(4,101)
    t.seth(-80)
    t.pd()
    t.circle(-300,12)

    tuoyuan(15,117,0.0,1.0,'white','white',1)  

def setting():
    t.delay(0)  
    t.ht()
    #t.bgpic('./DLAM.gif')
    t.pensize(2)
    t.color('blue')
    t.bgcolor('white')

    t2.ht()
    t2.pu()
    t2.goto(0,-280)


def mouth():
    t.pu()
    t.goto(-73,59)
    t.seth(-24)
    t.pd()
    t.color('black','#E92A14')
    t.begin_fill()
    t.circle(200,45)
    t.seth(-98)   
    t.circle(-77,165)
    t.end_fill()

    t.pu()
    t.goto(-32,2)
    t.seth(24)
    t.pd()
    t.color('black','#E74810')
    t.begin_fill()
    t.circle(-150,35)
    t.seth(-130)   
    t.circle(-70,90)
    t.end_fill()


def xianglian():
    t.pu()
    t.goto(-66,-30)
    t.pd()
    t.color('black','#F53338')
    t.begin_fill()
    t.seth(-15)
    t.circle(260,26)
    t.seth(-80)
    t.fd(10)
    t.seth(-167)
    t.circle(-240,30)  
    t.seth(80) 
    t.fd(12)
    t.end_fill()

def lingdang():
    tuoyuan(-10,-80,1.0,0.1,'black','#FFD957',1)
    line2(-30,-60,10,-60,c='#E89F10',size=3)          
    line2(-10,-70,-10,-80,c='black') 

    t.pu()
    t.goto(-10,-70)
    t.pd()
    t.color('black')
    t.begin_fill()
    t.seth(0)
    t.circle(2.5)
    t.end_fill()  

    t.pu()
    t.goto(-3,-50)  
    t.pd()
    t.pensize(3)
    t.color('white')
    t.seth(-50)
    t.circle(-100,2)


def dupi():
    t.pu()
    t.goto(-50,-40)
    t.pd()
    t.color('black','white')
    t.begin_fill()
    t.seth(-140)
    t.circle(60,280)
    t.end_fill()
    
    t.pu()
    t.goto(-40,-90)
    t.pd()
    t.color('black','white')
    t.begin_fill()
    t.seth(0)
    t.fd(60)
    t.seth(-90)
    t.circle(-30,180)
    t.end_fill()  

def body():
    t.color('black','#00A0DE')
    t.pu()
    t.goto(-73,-40)
    t.pd()

    t.begin_fill()
    t.seth(-140)
    t.circle(360,15)
    t.seth(-40)  
    t.fd(40) 

    t.pu()
    t.goto(-89,-84)
    t.pd()
    t.seth(-90)
    t.circle(360,15)

    t.pu()
    t.goto(53,-176)
    t.pd()

    t.seth(80)
    t.circle(360,15)


    t.pu()
    t.goto(76,-134)
    t.pd()
    t.seth(40)  
    t.fd(40) 
    t.seth(120)
    t.circle(330,15)
    t.end_fill()


    sanjiao(2,-178,10,'white')

def feet():
    t.pu()
    t.goto(-113,-135)
    t.pd()
    t.color('black','white')
    t.begin_fill()
    t.seth(0)
    t.circle(23)
    t.end_fill()    

    t.pu()
    t.goto(85,-135)
    t.pd()
    t.color('black','white')
    t.begin_fill()
    t.seth(0)
    t.circle(23)
    t.end_fill()

    
    tuoyuan(-13,-192,1.0,5.0,'black','white',ang=90)
    tuoyuan(63,-192,1.0,5.0,'black','white',ang=90)

def cat_name():
    t.pu()
    t.goto(80,-50)
    t.color('#0180DD')
    t.write('ドラえもん',font=('宋体',24,'normal'))   
    t.goto(120,-22)
    t.color('#dddddd')
    t.write('Doraemon',font=('宋体',20,'italic'))


setting()

head()

eyes()
nose()
mouth()
huzi()
body()
dupi()
xianglian()
feet()
lingdang()

cat_name()

t.done()

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:/a/436701.html

如若内容造成侵权/违法违规/事实不符,请联系我们进行投诉反馈qq邮箱809451989@qq.com,一经查实,立即删除!

相关文章

某资产管理系统打点过程中的免杀经历

上周&#xff0c;被扔过来单位内部的一个链接&#xff0c;让渗透一下&#xff0c;本以为三下五除二很快就能测完&#xff0c;没想到在对抗杀软时费了一番功夫&#xff0c;再加上杂七杂八的事儿&#xff0c;经过了一个星期才测完(&#xff03;&#xffe3;&#xff5e;&#xff…

API(接口) | 软件组件之间信息交互的“桥梁”

Hi&#xff0c;大家好&#xff0c;我是半亩花海。本文主要从 API 的定义、包含、用途和其他方面来简单地介绍 API&#xff08;接口&#xff09; ——软件组件之间信息交互的“桥梁”。 目录 一、什么是 API&#xff1f; 二、 API 中所包含哪些&#xff1f; 补充 三、API 可…

SQL server内存问题排查方案

前言 由于昨晚线上服务器数据库突然访问数据缓慢&#xff0c;任务管理里面SQL server进程爆满等等&#xff0c;重大事故的排查拟写解决方案。 整体思路 查询数据库请求连接&#xff1a;排查连接池是否占满查询数据库请求量&#xff1a;排查数据是否存在反复查询查询数据库阻…

Mysql 学习(十五)redo 日志

redo 日志 什么是redo日志&#xff1f;在说这个之前我们先来想一个场景&#xff0c;在访问磁盘的页面之前&#xff0c;我们会先把页面缓存到Buffer Pool之后&#xff0c;才会访问。写页面的时候也会先将buffer pool中的页面修改之后&#xff0c;然后在某个时机才会刷新到磁盘中…

【Oracle Database】如何远程连接服务器、创建用户、从本地dmp导入表

C:\Users\test>imp test/123456ip/orcl:1521 fileE:\db.dmp tablestable1,table2Import: Release 11.2.0.3.0 - Production on 星期一 3月 4 12:59:09 2024Copyright (c) 1982, 2011, Oracle and/or its affiliates. All rights reserved.IMP-00058: 遇到 ORACLE 错误 1263…

vue3 vue-i18n 多语言

1. 安装 npm install vue-i18n -s 2. 引入main.js import { createI18n } from vue-i18n import messages from ./i18n/index const i18n createI18n({legacy: false,locale: Cookies.get(language) || en_us, // set localefallbackLocale: en_us, // set fallback local…

Spring面向切片编程AOP概念及相关术语(一)

个人名片&#xff1a; &#x1f43c;作者简介&#xff1a;一名大三在校生&#xff0c;喜欢AI编程&#x1f38b; &#x1f43b;‍❄️个人主页&#x1f947;&#xff1a;落798. &#x1f43c;个人WeChat&#xff1a;hmmwx53 &#x1f54a;️系列专栏&#xff1a;&#x1f5bc;️…

面试问答之Spring进阶

文章目录 &#x1f412;个人主页&#xff1a;信计2102罗铠威&#x1f3c5;JavaEE系列专栏&#x1f4d6;前言&#xff1a;&#x1f380;说说你对Spring的认识与理解&#x1f415;Bean的分类&#x1f415; BeanFactory 接口和ApplicationContex 接口 的区别&#x1f415;SpringBe…

Canvas笔记04:绘制九大基本图形的方法,重头戏是贝塞尔曲线

hello&#xff0c;我是贝格前端工场&#xff0c;最近在学习canvas&#xff0c;分享一些canvas的一些知识点笔记&#xff0c;本期分享canvas绘制图形的知识&#xff0c;欢迎老铁们一同学习&#xff0c;欢迎关注&#xff0c;如有前端项目可以私信贝格。 Canvas是HTML5中的一个绘…

ROS2学习(七) Foxy版本ros2替换中间件。

在ros2使用的过程中&#xff0c;一开始选用的foxy版本&#xff0c;后来发现&#xff0c;foxy版本的ros2有很多问题。一个是foxy版本已经停止维护了。另一个问题是这个版本有很多bug, 后续的版本在功能实现上做了很大的改动&#xff0c;甚至说进行了重写。修复的一些问题&#x…

【Flink网络传输】ShuffleMaster与ShuffleEnvironment创建细节与提供的能力

文章目录 一. Taskmanager之间传递数据细节二. ShuffleService的设计与实现三. 在JobMaster中创建ShuffleMaster四. 在TaskManager中创建ShuffleEnvironment五. 基于ShuffleEnvironment创建ResultPartition1. 在task启动时创建ResultPartition2. ResultPartition的创建与对数据…

WSL2安装+深度学习环境配置

WSL2安装深度学习环境配置 1 安装WSL22 配置深度学习环境1.1 设置用户名、密码1.2 安装cuda修改WSL安装路径 1.3 安装Anaconda 参考&#xff1a;搭建Windows Linux子系统&#xff08;WSL2&#xff09;CUDA环境 参考&#xff1a;深度学习环境配置 WindowsWSL2 1 安装WSL2 WSL …

java-springboot 源码 01

01.springboot 是一个启动器 先安装maven&#xff0c;按照网上的流程来。主要是安装完成后&#xff0c;要修改conf目录下的setting.xml文件。 添加&#xff1a;阿里云镜像 <mirror><id>aliyunmaven</id><mirrorOf>*</mirrorOf><name>ali…

判断连续数据同意特征的方法:插旗法

bool isMonotonic(int* nums, int numsSize) {int flag 2;for (int i 1; i < numsSize; i) {if (nums[i-1] > nums[i]) {if (flag 0)return false;flag 1;}else if (nums[i-1] < nums[i]) {if (flag 1)return false;flag 0;}}return true; }此代码较为简单&…

【Python】新手入门(8):什么是迭代?迭代的作用是什么?

【Python】新手入门&#xff08;8&#xff09;&#xff1a;什么是迭代&#xff1f;迭代有什么应用&#xff1f; &#x1f308; 个人主页&#xff1a;高斯小哥 &#x1f525; 高质量专栏&#xff1a;Matplotlib之旅&#xff1a;零基础精通数据可视化、Python基础【高质量合集】…

《时代教育》是什么级别的期刊?是正规期刊吗?能评职称吗?

问题解答 问&#xff1a;《时代教育》杂志是正规刊物吗&#xff1f; 答&#xff1a;是的&#xff0c;国家新闻出版总署正式备案的期刊 问&#xff1a;《时代教育》是什么级别刊物&#xff1f; 答&#xff1a;省级 主管单位&#xff1a;成都日报报业集团 主办单位&#x…

<C++>【继承篇】

​ ✨前言✨ &#x1f393;作者&#xff1a;【 教主 】 &#x1f4dc;文章推荐&#xff1a; ☕博主水平有限&#xff0c;如有错误&#xff0c;恳请斧正。 &#x1f4cc;机会总是留给有准备的人&#xff0c;越努力&#xff0c;越幸运&#xff01; &#x1f4a6;导航助手&#x1…

主题乐园如何让新客变熟客,让游客变“留客”?

群硕跨越时间结识了一位爱讲故事的父亲&#xff0c;他汇集了一群幻想工程师&#xff0c;打算以故事为基础&#xff0c;建造一个梦幻的主题乐园。 这个乐园后来成为全球游客最多、收入最高的乐园之一&#xff0c;不仅在2023财年创下了近90亿&#xff08;美元&#xff09;的营收…

软件测试必学的16个高频数据库操作及命令

数据库作为软件系统数据的主要存取与操作中心&#xff0c;广泛应用于企业当中。在企业中常用的数据库管理系统有 ORACLE、MS SQL SERVER、MySQL等。其中以免费的 MySQL 最多&#xff0c;特别在中小型互联网公司里。 因此&#xff0c;本文的数据库操作是基于 MySQL 数据库系统下…

c# 二分查找(迭代与递归)

二分搜索被定义为一种在排序数组中使用的搜索算法&#xff0c;通过重复将搜索间隔一分为二。二分查找的思想是利用数组已排序的信息&#xff0c;将时间复杂度降低到O(log N)。 二分查找算法示例 何时在数据结构中应用二分查找的条件&#xff1a; 应用二分查找算法&#xff1a…