Python选修课第一届Turtle绘图大赛田康林赵冰珂组

点击此处查看视频

from turtle import*
setup(600,600,200,200)
#脸
penup()
goto(-190,0)
seth(-90)
pendown()
pencolor(‘goldenrod3‘)
pensize(5)
begin_fill()
circle(190,360)
fillcolor(‘lightgoldenrod1‘)
end_fill()
#画眉毛
penup()
goto(-135,155)
seth(30)
pendown()
pencolor(‘black‘)
pensize(8)
circle(-30,120)
penup()
goto(125,160)
seth(150)
pendown()
pencolor(‘black‘)
pensize(8)
circle(30,120)
hideturtle()
#画嘴巴
pensize(7)
penup()
goto(-138,-42)
pencolor(‘goldenrod3‘)
pendown()
seth(-75)
circle(138,150)

#左眼眶
penup()
pensize(4)
pencolor(‘goldenrod3‘)
goto(-180,90)
pendown()
seth(40)
begin_fill()
circle(-112,80)
penup()
goto(-180,90)
seth(-130)
pendown()
circle(20,120)
seth(40)
circle(-97,73)
seth(10)
circle(18,110)
fillcolor(‘white‘)
end_fill()
#右眼眶
penup()
goto(40,90)
pendown()
seth(40)
begin_fill()
circle(-112,80)
penup()
goto(40,90)
pendown()
seth(-130)
circle(20,120)
seth(40)
circle(-97,73)
seth(10)
circle(18,110)
fillcolor(‘white‘)
end_fill()
#画眼珠
pensize(2)
pencolor(‘black‘)
penup()
goto(77,92)
pendown()
begin_fill()
circle(15,360)
fillcolor(‘black‘)
end_fill()
penup()
goto(-145,91)
pendown()
begin_fill()
circle(15,360)
fillcolor(‘black‘)
end_fill()
#画腮红
pensize(1)
pencolor(‘lightsalmon1‘)
begin_fill()
penup()
goto(-180,25)
pendown()
seth(-90)
for i in range(2):
    for j in range(10):
        forward(j)
        left(9)
    for j in range(10,0,-1):
        forward(j)
        left(9)
fillcolor(‘lightsalmon1‘)
end_fill()
pensize(1)
pencolor(‘lightsalmon1‘)
begin_fill()
penup()
goto(100,25)
pendown()
seth(-90)
for i in range(2):
    for j in range(10):
        forward(j)
        left(9)
    for j in range(10,0,-1):
        forward(j)
        left(9)
fillcolor(‘lightsalmon1‘)
end_fill()
#画嘴巴
pensize(7)
penup()
goto(-138,-42)
pencolor(‘goldenrod3‘)
pendown()
seth(-75)
circle(138,150)
hideturtle()

原文地址:https://www.cnblogs.com/sninius/p/9939792.html

时间: 2024-10-01 03:29:42

Python选修课第一届Turtle绘图大赛田康林赵冰珂组的相关文章

Python选修课第二届Turtle绘图大赛

1)Partner: 学号:20181505025,郝春霖 学号:20181001113,杨禹凤 2)作品图示: 3)源代码: 1 import turtle 2 import random 3 import time 4 5 turtle.setup(0.9,0.9,None,None) 6 turtle.penup() 7 turtle.fd(-318) 8 turtle.pendown() 9 turtle.pensize(3)#初始线条 10 turtle.pencolor("brown

某篮球巨星(第二届Turtle绘图大赛)

(a) 合作伙伴 王俊杰 20171204080姚涵 20171204078 (b)代码执行结果和视频 理想结果: 实际结果: 运行视频: 点击我观看 (c) 程序源码 import turtle as t import os wight = 700 height = 800 t.setup(wight,height) t.speed(0) def move_pen(x,y): t.pu() t.goto(x-wight/2+50,y-height/2+50) t.pd()def draw_to

使用python中的matplotlib进行绘图分析数据

http://blog.csdn.net/pipisorry/article/details/37742423 matplotlib 是python最著名的绘图库,它提供了一整套和matlab相似的命令API,十分适合交互式地进行制图.而且也可以方便地将它作为绘图控件,嵌入GUI应用程序中. 它的文档相当完备,并且 Gallery页面 中有上百幅缩略图,打开之后都有源程序.因此如果你需要绘制某种类型的图,只需要在这个页面中浏览/复制/粘贴一下,基本上都能搞定. 在Linux下比较著名的数据图工具

【转】用Python写了个金融数据爬虫,半小时干了全组一周的工作量

用Python写了个金融数据爬虫,半小时干了全组一周的工作量 原创kk12345677 最后发布于2019-08-21 16:59:54 阅读数 1652 收藏 展开 最近,越来越多的研究员.基金经理甚至财务会计领域的朋友,向小编咨询:金融人需要学Python么? 事实上在2019年,这已经不是一个问题了.Python已成为国内很多顶级投行.基金.咨询等泛金融.商科领域的必备技能.中金公司.银河证券.南方基金.银华基金在招聘分析师岗位时,纷纷要求熟练掌握Python数据分析技能. Excel我已

Python turtle绘图实例分析

画一个红色的五角星 from turtle import * color('red','red') begin_fill() for i in range(5): fd(200) rt(144) end_fill() done() 效果图: 画一条蟒蛇 #PythonDraw.py import turtle #turtle.setup(650,350,200,200) turtle.penup() turtle.fd(-250) turtle.pendown() turtle.pensize(

python绘制图形(Turtle模块)

用python的Turtle模块可以绘制很多精美的图形,下面简单介绍一下使用方法. 需要用到的工具有python,python 的安装这里就不再细说.自行搜索. 1 from turtle import * #引入turtle模块 2 color('red', 'yellow') #设置绘制的颜色和填充颜色 3 4 # 海龟设置 5 hideturtle() # 隐藏箭头 6 speed(10) # 设置速度 7 # 前进后退,左转右转 8 fd(100) # 前进100像素(forward(1

河北大学python选修课00次作业

学习python认为挺好玩的一件事.看到很多关于python的东西在网上,看到有这个课,认为只是选修课,别人也可以选,自己想不能被别人落下,别人都会,我不会可不行. 而且认为python是一个很强大的工具,既然有这么强大的工具,会对以后的生活有一定的帮助,自己会学好的,以后的生活是自己想要的,感觉会编程是很正常必须的,虽然我以前也会编程,但不会错过任何一个成长的机会,我想说我想说说的话,做自己想做的事. 以后会有用的,万一以后想做了,我还有基础,以后的路谁都不知到底会怎样,可能比较迷茫,但我会走

python之绘制图形库turtle

关于绘制图形库turtle# 画布上,默认有一个坐标原点为画布中心的坐标轴(0,0),默认"standard"模式坐标原点上有一只面朝x轴正方向小乌龟 一:海龟箭头Turtle相关方法##############################       1.绘制的运动        ##############################a).移动和绘制# turtle.forward(distance) | turtle.fd(distance)# 画笔向绘制方向的当前方向移

python标准库《turtle》

FUNCTIONS Screen() Return the singleton screen object. If none exists at the moment, create a new one and return it, else return the existing one. addshape(name, shape=None) Adds a turtle shape to TurtleScreen's shapelist. Arguments: (1) name is the