博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
while循环与 for循环,函数定义与调用
阅读量:6787 次
发布时间:2019-06-26

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

import turtleturtle.color('red')turtle.fillcolor('blue')turtle.begin_fill()
turtle.forward(100)    turtle.right(430)    if abs(turtle.pos())<1:        breakturtle.end_fill()turtle.done()

import turtleturtle.color('red')turtle.fillcolor('green')turtle.begin_fill()while True:    turtle.forward(60)    turtle.right(230)    if abs(turtle.pos())<1:        breakturtle.end_fill()turtle.done()

import turtleturtle.setup(600,400,0,0)turtle.bgcolor('red')turtle.color('yellow')turtle.fillcolor('yellow')def mygoto(x,y):    turtle.penup()    turtle.goto(x,y)    turtle.pendown()    def draw5jx(r):    turtle.begin_fill()    for i in range(5):        turtle.forward(r)        turtle.right(144)    turtle.end_fill()mygoto(-250,100)draw5jx(100)mygoto(-115,165)draw5jx(35)mygoto(-75,115)draw5jx(35)mygoto(-75,55)draw5jx(35)mygoto(-115,5)draw5jx(35)turtle.done()

转载于:https://www.cnblogs.com/shijiediyiwen/p/9036862.html

你可能感兴趣的文章
HTML5与CSS3基础教程第八版学习笔记11~15章
查看>>
Redis -- 过期时间 和 缓存 例子
查看>>
babel7-按需加载polyfill
查看>>
Android 权限设置大全1
查看>>
Android eclipse中程序调试
查看>>
博客园博客兼容手机浏览
查看>>
第7题——买苹果
查看>>
disruptor架构四 多生产者多消费者执行
查看>>
C# - 什么是事件绑定?
查看>>
HDU-Fish买电脑 二分查找
查看>>
Rzagovori 贪心
查看>>
LTE第一章 介绍
查看>>
Scala基础篇-04 try表达式
查看>>
java日期格式(年月日时分秒毫秒)
查看>>
linux nohup后台运行命令
查看>>
[SDOI2017]天才黑客
查看>>
怎样控制竞价点击价格
查看>>
hbase 学习(十六)系统架构图
查看>>
sqlserver数据存储
查看>>
进行app性能和安全性测试的重要性
查看>>