美文网首页
python day1_1

python day1_1

作者: debrogile | 来源:发表于2018-04-29 14:57 被阅读50次

本次运用python的一个绘图库turtle,画了一朵玫瑰花,如果有一位可爱的小姐姐看到,那就送给你啦!效果如下:

源代码如下:

# 导入turtle库

import turtle

# 设置初始的位置

turtle.penup()

turtle.left(90)

turtle.fd(200)

turtle.pendown()

turtle.right(90)

#  bud

turtle.fillcolor("red")

turtle.begin_fill()

turtle.circle(10,180)

turtle.circle(25,110)

turtle.left(50) 

turtle.circle(60,45) 

turtle.circle(20,170) 

turtle.right(24) 

turtle.fd(30) 

turtle.left(10) 

turtle.circle(30,110) 

turtle.fd(20) 

turtle.left(40) 

turtle.circle(90,70) 

turtle.circle(30,150) 

turtle.right(30) 

turtle.fd(15) 

turtle.circle(80,90) 

turtle.left(15) 

turtle.fd(45) 

turtle.right(165) 

turtle.fd(20) 

turtle.left(155) 

turtle.circle(150,80) 

turtle.left(50) 

turtle.circle(150,90) 

turtle.end_fill()

# petal1

turtle.left(150) 

turtle.circle(-90,70) 

turtle.left(20) 

turtle.circle(75,105) 

turtle.setheading(60) 

turtle.circle(80,98) 

turtle.circle(-90,40)

#petal2

turtle.left(180) 

turtle.circle(90,40) 

turtle.circle(-80,98) 

turtle.setheading(-83)

#leave1

turtle.fd(30) 

turtle.left(90) 

turtle.fd(25) 

turtle.left(45) 

turtle.fillcolor("green") 

turtle.begin_fill() 

turtle.circle(-80,90) 

turtle.right(90) 

turtle.circle(-80,90) 

turtle.end_fill()

turtle.right(135) 

turtle.fd(60) 

turtle.left(180) 

turtle.fd(85) 

turtle.left(90) 

turtle.fd(80)

#leave2

turtle.right(90) 

turtle.right(45) 

turtle.fillcolor("green") 

turtle.begin_fill() 

turtle.circle(80,90) 

turtle.left(90) 

turtle.circle(80,90) 

turtle.end_fill() 

turtle.left(135) 

turtle.fd(60) 

turtle.left(180) 

turtle.fd(60) 

turtle.right(90) 

turtle.circle(200,60)

#reset pen

turtle.penup()

turtle.pensize(4)

turtle.goto(220,50)

turtle.pendown()

#write

turtle.color("red")

turtle.pensize(520)

turtle.write("love u!")

相关文章

  • python day1_1

    本次运用python的一个绘图库turtle,画了一朵玫瑰花,如果有一位可爱的小姐姐看到,那就送给你啦!效果如下:...

  • java day1_1

    今天第一天更新,是一个判断素数的代码,较为简单。 素数:除1和其本身外无其他因子的数。(1不是素数也不是合数)

  • day1_1/31/2017

    OBJECTIVE 完成了什么? 1. text mining quiz and reading. 2. meet...

  • 文章不再同步这里,请关注微信公众号【Python猫】

    Python猫Python猫Python猫 Python猫 Python猫 Python猫

  • 人工智能学习线路图

    Python教程 Python 教程Python 简介Python 环境搭建Python 中文编码Python 基...

  • 基础知识

    python 了解Python Python的应用领域 Python的版本 Python介绍 Python是时下最...

  • Python教程导航

    Python 教程 Python 简介 Python 环境搭建 Python 中文编码 Python 基础语法 ...

  • Introduction to Python

    Introduction to Python @(Python入门) [TOC] Python简介 Python的...

  • The Zen Of Python

    The Zen Of Python被译为Python之禅,Python箴言,Python之道等,是Python中的...

  • Python 介绍

    章节 Python 介绍Python 开发环境搭建Python 语法Python 变量Python 数值类型Pyt...

网友评论

      本文标题:python day1_1

      本文链接:https://www.haomeiwen.com/subject/tjgolftx.html