python用小海龟画糖葫芦 您所在的位置:网站首页 画海龟的视频教程大全简单 python用小海龟画糖葫芦

python用小海龟画糖葫芦

2024-07-16 19:12| 来源: 网络整理| 查看: 265

python小海龟画糖葫芦

import turtle #导入小海龟模块 t=turtle.Pen() #创建画笔 t.penup() #提起画笔 t.goto(20, 0) #起始坐标 t.pendown() #下笔 t.begin_fill() #填充颜色 t.fillcolor(“red”)#填充红色 t.circle(40) #画圆半径:40 t.end_fill() #结束填充

t.penup() t.goto(60,40) t.pendown() t.begin_fill() t.fillcolor(“blue”) t.circle(40) t.end_fill()

t.penup() t.goto(100,80) t.pendown() t.begin_fill() t.fillcolor(“yellow”) t.circle(40) t.end_fill()

t.penup() t.goto(140,120) t.pendown() t.begin_fill() t.fillcolor(“pink”) t.circle(40) t.end_fill()

t.penup() t.speed(1) t.width(5) t.color(‘orange’) t.goto(-60,-40) t.pendown() t.seth(45) #45°角 t.forward(75) turtle.done()#保持运行绘图结果不退出 在这里插入图片描述



【本文地址】

公司简介

联系我们

今日新闻

    推荐新闻

    专题文章
      CopyRight 2018-2019 实验室设备网 版权所有