我的编程空间,编程开发者的网络收藏夹
学习永远不晚

怎么使用python画皮卡丘

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

怎么使用python画皮卡丘

这篇文章主要介绍怎么使用python画皮卡丘,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!

python的数据类型有哪些?

python的数据类型:1. 数字类型,包括int(整型)、long(长整型)和float(浮点型)。2.字符串,分别是str类型和unicode类型。3.布尔型,Python布尔类型也是用于逻辑运算,有两个值:True(真)和False(假)。4.列表,列表是Python中使用最频繁的数据类型,集合中可以放任何数据类型。5. 元组,元组用”()”标识,内部元素用逗号隔开。6. 字典,字典是一种键值对的集合。7. 集合,集合是一个无序的、不重复的数据组合。

作为童年时代比较受大家欢迎的卡通人物,皮卡丘肯定是榜上有名的。我们在学习了python后,也可以使用相关的代码画出一只可爱的皮卡丘。

import turtle  def getPosition(x, y):    turtle.setx(x)    turtle.sety(y)    print(x, y)  class Pikachu:     def __init__(self):        self.t = turtle.Turtle()        t = self.t        t.pensize(3)        t.speed(9)        t.ondrag(getPosition)     def noTrace_goto(self, x, y):        self.t.penup()        self.t.goto(x, y)        self.t.pendown()     def leftEye(self, x, y):        self.noTrace_goto(x, y)        t = self.t        t.seth(0)        t.fillcolor('#333333')        t.begin_fill()        t.circle(22)        t.end_fill()         self.noTrace_goto(x, y + 10)        t.fillcolor('#000000')        t.begin_fill()        t.circle(10)        t.end_fill()         self.noTrace_goto(x + 6, y + 22)        t.fillcolor('#ffffff')        t.begin_fill()        t.circle(10)        t.end_fill()     def rightEye(self, x, y):        self.noTrace_goto(x, y)        t = self.t        t.seth(0)        t.fillcolor('#333333')        t.begin_fill()        t.circle(22)        t.end_fill()         self.noTrace_goto(x, y + 10)        t.fillcolor('#000000')        t.begin_fill()        t.circle(10)        t.end_fill()         self.noTrace_goto(x - 6, y + 22)        t.fillcolor('#ffffff')        t.begin_fill()        t.circle(10)        t.end_fill()     def mouth(self, x, y):        self.noTrace_goto(x, y)        t = self.t         t.fillcolor('#88141D')        t.begin_fill()        # 下嘴唇        l1 = []        l2 = []        t.seth(190)        a = 0.7        for i in range(28):            a += 0.1            t.right(3)            t.fd(a)            l1.append(t.position())         self.noTrace_goto(x, y)         t.seth(10)        a = 0.7        for i in range(28):            a += 0.1            t.left(3)            t.fd(a)            l2.append(t.position())         # 上嘴唇         t.seth(10)        t.circle(50, 15)        t.left(180)        t.circle(-50, 15)         t.circle(-50, 40)        t.seth(233)        t.circle(-50, 55)        t.left(180)        t.circle(50, 12.1)        t.end_fill()         # 舌头        self.noTrace_goto(17, 54)        t.fillcolor('#DD716F')        t.begin_fill()        t.seth(145)        t.circle(40, 86)        t.penup()        for pos in reversed(l1[:20]):            t.goto(pos[0], pos[1] + 1.5)        for pos in l2[:20]:            t.goto(pos[0], pos[1] + 1.5)        t.pendown()        t.end_fill()         # 鼻子        self.noTrace_goto(-17, 94)        t.seth(8)        t.fd(4)        t.back(8)     # 红脸颊    def leftCheek(self, x, y):        turtle.tracer(False)        t = self.t        self.noTrace_goto(x, y)        t.seth(300)        t.fillcolor('#DD4D28')        t.begin_fill()        a = 2.3        for i in range(120):            if 0 <= i < 30 or 60 <= i < 90:                a -= 0.05                t.lt(3)                t.fd(a)            else:                a += 0.05                t.lt(3)                t.fd(a)        t.end_fill()        turtle.tracer(True)     def rightCheek(self, x, y):        t = self.t        turtle.tracer(False)        self.noTrace_goto(x, y)        t.seth(60)        t.fillcolor('#DD4D28')        t.begin_fill()        a = 2.3        for i in range(120):            if 0 <= i < 30 or 60 <= i < 90:                a -= 0.05                t.lt(3)                t.fd(a)            else:                a += 0.05                t.lt(3)                t.fd(a)        t.end_fill()        turtle.tracer(True)     def colorLeftEar(self, x, y):        t = self.t        self.noTrace_goto(x, y)        t.fillcolor('#000000')        t.begin_fill()        t.seth(330)        t.circle(100, 35)        t.seth(219)        t.circle(-300, 19)        t.seth(110)        t.circle(-30, 50)        t.circle(-300, 10)        t.end_fill()     def colorRightEar(self, x, y):        t = self.t        self.noTrace_goto(x, y)        t.fillcolor('#000000')        t.begin_fill()        t.seth(300)        t.circle(-100, 30)        t.seth(35)        t.circle(300, 15)        t.circle(30, 50)        t.seth(190)        t.circle(300, 17)        t.end_fill()     def body(self):        t = self.t         t.fillcolor('#F6D02F')        t.begin_fill()        # 右脸轮廓        t.penup()        t.circle(130, 40)        t.pendown()        t.circle(100, 105)        t.left(180)        t.circle(-100, 5)         # 右耳朵        t.seth(20)        t.circle(300, 30)        t.circle(30, 50)        t.seth(190)        t.circle(300, 36)         # 上轮廓        t.seth(150)        t.circle(150, 70)         # 左耳朵        t.seth(200)        t.circle(300, 40)        t.circle(30, 50)        t.seth(20)        t.circle(300, 35)        # print(t.pos())         # 左脸轮廓        t.seth(240)        t.circle(105, 95)        t.left(180)        t.circle(-105, 5)         # 左手        t.seth(210)        t.circle(500, 18)        t.seth(200)        t.fd(10)        t.seth(280)        t.fd(7)        t.seth(210)        t.fd(10)        t.seth(300)        t.circle(10, 80)        t.seth(220)        t.fd(10)        t.seth(300)        t.circle(10, 80)        t.seth(240)        t.fd(12)        t.seth(0)        t.fd(13)        t.seth(240)        t.circle(10, 70)        t.seth(10)        t.circle(10, 70)        t.seth(10)        t.circle(300, 18)         t.seth(75)        t.circle(500, 8)        t.left(180)        t.circle(-500, 15)        t.seth(250)        t.circle(100, 65)         # 左脚        t.seth(320)        t.circle(100, 5)        t.left(180)        t.circle(-100, 5)        t.seth(220)        t.circle(200, 20)        t.circle(20, 70)         t.seth(60)        t.circle(-100, 20)        t.left(180)        t.circle(100, 20)        t.seth(300)        t.circle(10, 70)         t.seth(60)        t.circle(-100, 20)        t.left(180)        t.circle(100, 20)        t.seth(10)        t.circle(100, 60)         # 横向        t.seth(180)        t.circle(-100, 10)        t.left(180)        t.circle(100, 10)        t.seth(5)        t.circle(100, 10)        t.circle(-100, 40)        t.circle(100, 35)        t.left(180)        t.circle(-100, 10)         # 右脚        t.seth(290)        t.circle(100, 55)        t.circle(10, 50)         t.seth(120)        t.circle(100, 20)        t.left(180)        t.circle(-100, 20)         t.seth(0)        t.circle(10, 50)         t.seth(110)        t.circle(100, 20)        t.left(180)        t.circle(-100, 20)         t.seth(30)        t.circle(20, 50)         t.seth(100)        t.circle(100, 40)         # 右侧身体轮廓        t.seth(200)        t.circle(-100, 5)        t.left(180)        t.circle(100, 5)        t.left(30)        t.circle(100, 75)        t.right(15)        t.circle(-300, 21)        t.left(180)        t.circle(300, 3)         # 右手        t.seth(43)        t.circle(200, 60)         t.right(10)        t.fd(10)         t.circle(5, 160)        t.seth(90)        t.circle(5, 160)        t.seth(90)         t.fd(10)        t.seth(90)        t.circle(5, 180)        t.fd(10)         t.left(180)        t.left(20)        t.fd(10)        t.circle(5, 170)        t.fd(10)        t.seth(240)        t.circle(50, 30)         t.end_fill()        self.noTrace_goto(130, 125)        t.seth(-20)        t.fd(5)        t.circle(-5, 160)        t.fd(5)         # 手指纹        self.noTrace_goto(166, 130)        t.seth(-90)        t.fd(3)        t.circle(-4, 180)        t.fd(3)        t.seth(-90)        t.fd(3)        t.circle(-4, 180)        t.fd(3)         # 尾巴        self.noTrace_goto(168, 134)        t.fillcolor('#F6D02F')        t.begin_fill()        t.seth(40)        t.fd(200)        t.seth(-80)        t.fd(150)        t.seth(210)        t.fd(150)        t.left(90)        t.fd(100)        t.right(95)        t.fd(100)        t.left(110)        t.fd(70)        t.right(110)        t.fd(80)        t.left(110)        t.fd(30)        t.right(110)        t.fd(32)         t.right(106)        t.circle(100, 25)        t.right(15)        t.circle(-300, 2)        ##############        # print(t.pos())        t.seth(30)        t.fd(40)        t.left(100)        t.fd(70)        t.right(100)        t.fd(80)        t.left(100)        t.fd(46)        t.seth(66)        t.circle(200, 38)        t.right(10)        t.fd(10)        t.end_fill()         # 尾巴花纹        t.fillcolor('#923E24')        self.noTrace_goto(126.82, -156.84)        t.begin_fill()         t.seth(30)        t.fd(40)        t.left(100)        t.fd(40)        t.pencolor('#923e24')        t.seth(-30)        t.fd(30)        t.left(140)        t.fd(20)        t.right(150)        t.fd(20)        t.left(150)        t.fd(20)        t.right(150)        t.fd(20)        t.left(130)        t.fd(18)        t.pencolor('#000000')        t.seth(-45)        t.fd(67)        t.right(110)        t.fd(80)        t.left(110)        t.fd(30)        t.right(110)        t.fd(32)        t.right(106)        t.circle(100, 25)        t.right(15)        t.circle(-300, 2)        t.end_fill()         # 帽子、眼睛、嘴巴、脸颊        self.cap(-134.07, 147.81)        self.mouth(-5, 25)        self.leftCheek(-126, 32)        self.rightCheek(107, 63)        self.colorLeftEar(-250, 100)        self.colorRightEar(140, 270)        self.leftEye(-85, 90)        self.rightEye(50, 110)        t.hideturtle()     def cap(self, x, y):        self.noTrace_goto(x, y)        t = self.t        t.fillcolor('#CD0000')        t.begin_fill()        t.seth(200)        t.circle(400, 7)        t.left(180)        t.circle(-400, 30)        t.circle(30, 60)        t.fd(50)        t.circle(30, 45)        t.fd(60)        t.left(5)        t.circle(30, 70)        t.right(20)        t.circle(200, 70)        t.circle(30, 60)        t.fd(70)        # print(t.pos())        t.right(35)        t.fd(50)        t.circle(8, 100)        t.end_fill()        self.noTrace_goto(-168.47, 185.52)        t.seth(36)        t.circle(-270, 54)        t.left(180)        t.circle(270, 27)        t.circle(-80, 98)         t.fillcolor('#444444')        t.begin_fill()        t.left(180)        t.circle(80, 197)        t.left(58)        t.circle(200, 45)        t.end_fill()         self.noTrace_goto(-58, 270)        t.pencolor('#228B22')        t.dot(35)         self.noTrace_goto(-30, 280)        t.fillcolor('#228B22')        t.begin_fill()        t.seth(100)        t.circle(30, 180)        t.seth(190)        t.fd(15)        t.seth(100)        t.circle(-45, 180)        t.right(90)        t.fd(15)        t.end_fill()        t.pencolor('#000000')     def start(self):        self.body()  def main():    print('Painting the Pikachu... ')    turtle.screensize(800, 600)    turtle.title('Pikachu')    pikachu = Pikachu()    pikachu.start()    turtle.mainloop()  if __name__ == '__main__':main()

怎么使用python画皮卡丘

以上是“怎么使用python画皮卡丘”这篇文章的所有内容,感谢各位的阅读!希望分享的内容对大家有帮助,更多相关知识,欢迎关注编程网行业资讯频道!

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

怎么使用python画皮卡丘

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

怎么使用python画皮卡丘

这篇文章主要介绍怎么使用python画皮卡丘,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!python的数据类型有哪些?python的数据类型:1. 数字类型,包括int(整型)、long(长整型)和float(浮点
2023-06-14

怎么用python画一只帅气的皮卡丘

今天小编给大家分享一下怎么用python画一只帅气的皮卡丘的相关知识点,内容详细,逻辑清晰,相信大部分人都还太了解这方面的知识,所以分享这篇文章给大家参考一下,希望大家阅读完这篇文章后有所收获,下面我们一起来了解一下吧。为了访问 Pytho
2023-06-26

python怎么实现利用声音控制皮卡丘不断前进游戏

这篇文章主要介绍“python怎么实现利用声音控制皮卡丘不断前进游戏”的相关知识,小编通过实际案例向大家展示操作过程,操作方法简单快捷,实用性强,希望这篇“python怎么实现利用声音控制皮卡丘不断前进游戏”文章能帮助大家解决问题。开发工具
2023-06-27

怎么用Python制作一个可以聊天的皮卡丘版桌面宠物

这篇文章主要介绍了怎么用Python制作一个可以聊天的皮卡丘版桌面宠物,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。开发工具Python版本:3.6.4相关模块:PyQt5模
2023-06-29

怎么使用python画樱花树

要使用Python画樱花树,可以按照以下步骤进行:1. 导入必要的库:```import turtleimport random```2. 设置画布:```window = turtle.Screen()window.bgcolor("bl
2023-08-18

怎么使用Python画圣诞树

使用Python画圣诞树可以使用turtle模块来实现。下面是一个简单的示例代码:```pythonimport turtledef draw_tree(t, size):if size returnelse:t.forward(size)
2023-08-18

怎么使用python画曲线图

要使用Python画曲线图,可以使用matplotlib库。下面是一个简单的示例代码:```pythonimport matplotlib.pyplot as plt# 准备数据x = [1, 2, 3, 4, 5]y = [2, 4, 6
2023-10-12

怎么使用python turtle画雪人

下面是一个使用Python Turtle模块绘制雪人的示例代码:```pythonimport turtle# 设置画布turtle.setup(800, 600)turtle.bgcolor("skyblue")turtle.title(
2023-09-29

word橡皮擦工具怎么使用

这篇“word橡皮擦工具怎么使用”文章的知识点大部分人都不太理解,所以小编给大家总结了以下内容,内容详细,步骤清晰,具有一定的借鉴价值,希望大家阅读完这篇文章能有所收获,下面我们一起来看看这篇“word橡皮擦工具怎么使用”文章吧。word橡
2023-07-01

怎么在python中使用OpenCV画图

怎么在python中使用OpenCV画图?很多新手对此不是很清楚,为了帮助大家解决这个难题,下面小编将为大家详细讲解,有这方面需求的人可以来学习下,希望你能有所收获。python有哪些常用库python常用的库:1.requesuts;2.
2023-06-14

怎么使用python画立体星空

要使用Python绘制立体星空,您可以使用Python中的图形库来实现。以下是一种可能的方法:1. 导入所需的库:```pythonimport turtlefrom random import randint```2. 创建一个绘图窗口和
2023-08-18

怎么使用python plot画柱状图

要使用Python的Matplotlib库来绘制柱状图,可以按照以下步骤操作:1. 导入必要的库:```pythonimport matplotlib.pyplot as plt```2. 准备数据:```pythonx = [1, 2,
2023-09-20

Python Tkinter Canvas画布控件怎么使用

这篇文章主要讲解了“Python Tkinter Canvas画布控件怎么使用”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“Python Tkinter Canvas画布控件怎么使用”吧!C
2023-06-28

怎么使用python sns.countplot()绘画条形图

这篇文章主要介绍了怎么使用python sns.countplot()绘画条形图的相关知识,内容详细易懂,操作简单快捷,具有一定借鉴价值,相信大家阅读完这篇怎么使用python sns.countplot()绘画条形图文章都会有所收获,下面
2023-07-02

怎么使用CSS画

这篇文章给大家分享的是有关怎么使用CSS画的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。今天小颖给大家分享一个用CSS画的爱心,底下有代码和制作过程,希望对大家有所帮助。第一步:先画一个正方形。如图:
2023-06-08

编程热搜

  • Python 学习之路 - Python
    一、安装Python34Windows在Python官网(https://www.python.org/downloads/)下载安装包并安装。Python的默认安装路径是:C:\Python34配置环境变量:【右键计算机】--》【属性】-
    Python 学习之路 - Python
  • chatgpt的中文全称是什么
    chatgpt的中文全称是生成型预训练变换模型。ChatGPT是什么ChatGPT是美国人工智能研究实验室OpenAI开发的一种全新聊天机器人模型,它能够通过学习和理解人类的语言来进行对话,还能根据聊天的上下文进行互动,并协助人类完成一系列
    chatgpt的中文全称是什么
  • C/C++中extern函数使用详解
  • C/C++可变参数的使用
    可变参数的使用方法远远不止以下几种,不过在C,C++中使用可变参数时要小心,在使用printf()等函数时传入的参数个数一定不能比前面的格式化字符串中的’%’符号个数少,否则会产生访问越界,运气不好的话还会导致程序崩溃
    C/C++可变参数的使用
  • css样式文件该放在哪里
  • php中数组下标必须是连续的吗
  • Python 3 教程
    Python 3 教程 Python 的 3.0 版本,常被称为 Python 3000,或简称 Py3k。相对于 Python 的早期版本,这是一个较大的升级。为了不带入过多的累赘,Python 3.0 在设计的时候没有考虑向下兼容。 Python
    Python 3 教程
  • Python pip包管理
    一、前言    在Python中, 安装第三方模块是通过 setuptools 这个工具完成的。 Python有两个封装了 setuptools的包管理工具: easy_install  和  pip , 目前官方推荐使用 pip。    
    Python pip包管理
  • ubuntu如何重新编译内核
  • 改善Java代码之慎用java动态编译

目录