IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> Python知识库 -> Python —— turtle 绘图 -> 正文阅读

[Python知识库]Python —— turtle 绘图

用 turtle 画滑板!

?

代码:

import turtle as t
t.speed(0)

t.pensize(3)
t.fillcolor('#fbc55b')
t.begin_fill()

t.penup()
t.goto(80,-60)
t.pendown()
t.left(170)
t.forward(250)
t.right(18)
t.circle(-200,10)
t.right(20)
t.circle(-30,100)
t.circle(-70,50)
t.setheading(-7)
t.forward(260)
t.setheading(5)
t.circle(-250,15)
t.left(10)
t.circle(-15,100)
t.right(13.8)
t.circle(-80,20)
t.right(15)
t.circle(-200,38)


t.penup()
t.goto(216,-1)
t.pendown()
t.setheading(-47)
t.circle(-15,50)
t.right(13.8)
t.circle(-80,20)
t.right(15)
t.circle(-200,38)
t.setheading(170)
t.forward(250)
t.right(18)
t.circle(-200,8)
t.right(10)
t.circle(-35,50)

t.end_fill()

#轮子1
t.colormode(255)
t.fillcolor(180,180,180)
t.begin_fill()
t.penup()
t.goto(89,-103)
t.pendown()
t.circle(25)
t.end_fill()

t.colormode(255)
t.fillcolor(150,150,150)
t.begin_fill()
t.penup()
t.goto(85,-110)
t.pendown()
t.circle(25)
t.end_fill()

t.fillcolor(100,100,100)
t.begin_fill()
t.penup()
t.goto(70,-109)
t.pendown()
t.circle(10)
t.end_fill()


#轮子杆

t.fillcolor(100,100,100)
t.begin_fill()

t.penup()
t.goto(88.5,-91.5)
t.setheading(45)
t.pendown()
t.forward(28)
t.setheading(-177)
t.fd(25)
t.setheading(-135)
t.fd(9)
t.setheading(-29)
t.circle(-25,45)
t.end_fill()

t.penup()
t.goto(79,-78)
t.setheading(45)
t.pendown()
t.forward(9)


#轮子2
t.colormode(255)
t.fillcolor(180,180,180)
t.begin_fill()
t.penup()
t.goto(-105,-89.5)
t.pendown()
t.circle(25)
t.end_fill()

t.colormode(255)
t.fillcolor(150,150,150)
t.begin_fill()
t.penup()
t.goto(-110,-96)
t.pendown()
t.circle(25)
t.end_fill()

t.fillcolor(100,100,100)
t.begin_fill()
t.penup()
t.goto(-120,-85)
t.pendown()
t.circle(10)
t.end_fill()

#轮子杆

t.fillcolor(100,100,100)
t.begin_fill()

t.penup()
t.goto(-100,-65)
t.setheading(45)
t.pendown()
t.forward(28)
t.setheading(170)
t.fd(23)
t.setheading(-135)
t.forward(13)
t.setheading(-20)
t.circle(-25,45)

t.end_fill()

#轮子3
t.fillcolor(150,150,150)
t.begin_fill()
t.penup()
t.goto(99,-84)
t.pendown()
t.setheading(-30)
t.circle(25,106)
t.setheading(-175)
t.fd(22)
t.setheading(-135)
t.fd(20)
t.end_fill()

t.fillcolor(200,200,200)
t.begin_fill()
t.penup()
t.goto(123,-85)
t.pendown()
t.setheading(10)
t.circle(25,65)
t.setheading(-160)
t.fd(10)
t.setheading(-110)
t.circle(-25,60)
t.end_fill()

t.fillcolor(150,150,150)
t.begin_fill()
t.penup()
t.goto(-82.1,-49.1)
t.pendown()
t.setheading(-35)
t.circle(25,70)
t.setheading(170)
t.fd(27)
t.setheading(-135)
t.fd(7.1)
t.end_fill()

#t.forward(40)
#t.right(10)
#t.circle(-70,30)
t.hideturtle()

          

效果图:

  Python知识库 最新文章
Python中String模块
【Python】 14-CVS文件操作
python的panda库读写文件
使用Nordic的nrf52840实现蓝牙DFU过程
【Python学习记录】numpy数组用法整理
Python学习笔记
python字符串和列表
python如何从txt文件中解析出有效的数据
Python编程从入门到实践自学/3.1-3.2
python变量
上一篇文章      下一篇文章      查看所有文章
加:2022-04-07 22:39:25  更:2022-04-07 22:40:43 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/15 18:43:33-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码