博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
作业4——条件、循环、函数语句
阅读量:5160 次
发布时间:2019-06-13

本文共 1420 字,大约阅读时间需要 4 分钟。

  1. 注意标准库的两种导入与使用方式,建议大家采用<库名>.<函数名>的方式。
  2. 对前面的代码进行优化,用for,while,if,def实现:

a.画五角星

import turtleturtle.setup(600,400,0,0)turtle.color('yellow')turtle.bgcolor('red')turtle.fillcolor('yellow')turtle.up()turtle.goto(-250,75)turtle.down()turtle.begin_fill()for i in range(5):    turtle.forward(100)    turtle.right(144)turtle.end_fill()

 

b.画同心圆

import turtlefor i in range(5):    turtle.up()    turtle.goto(0,-20*(i+1))    turtle.down()    turtle.circle(20*(i+1))    turtle.write(10-i)

 

c.画太阳花

from turtle import *color('red','blue')begin_fill()while True:    forward(100)    left(170)    if(abs(pos()))<1:        breakend_fill()done()

 

d.画五个角星

import turtleturtle.setup(600,400,0,0)turtle.color('yellow')turtle.bgcolor('red')turtle.fillcolor('yellow')def mygoto(x,y):    turtle.up()    turtle.goto(x,y)    turtle.down()    mygoto(-250,75)turtle.begin_fill()for i in range(5):    turtle.forward(100)    turtle.right(144)turtle.end_fill()mygoto(-100,150)turtle.begin_fill()for i in range(5):    turtle.forward(50)    turtle.right(144)turtle.end_fill()mygoto(-80,80)turtle.begin_fill()for i in range(5):    turtle.forward(50)    turtle.right(144)turtle.end_fill()mygoto(-70,20)turtle.begin_fill()for i in range(5):    turtle.forward(50)    turtle.right(144)turtle.end_fill()mygoto(-80,-40)turtle.begin_fill()for i in range(5):    turtle.forward(50)    turtle.right(144)turtle.end_fill()

 

转载于:https://www.cnblogs.com/888abc/p/7508604.html

你可能感兴趣的文章
JavaScript---Promise
查看>>
暖暖的感动
查看>>
Java中的日期和时间
查看>>
Django基于admin的stark组件创建(一)
查看>>
PAT L2-016 愿天下有情人都是失散多年的兄妹
查看>>
抛弃IIS,利用FastCGI让Asp.net与Nginx在一起
查看>>
C. Tanya and Toys_模拟
查看>>
springboot jar包运行中获取资源文件
查看>>
基于FPGA实现的高速串行交换模块实现方法研究
查看>>
Java Scala获取所有注解的类信息
查看>>
delphi ,安装插件
查看>>
case when then的用法-leetcode交换工资
查看>>
11.28.cookie
查看>>
BeanShell简介
查看>>
python字符串操作
查看>>
不同程序语言的注释和变量要求
查看>>
语言基础(9):static, extern 和 inline
查看>>
邮件和短信验证码
查看>>
(转)Android studio 使用心得(五)—代码混淆和破解apk
查看>>
构建之法阅读笔记03
查看>>