博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
条件、循环、函数定义 练习
阅读量:5140 次
发布时间:2019-06-13

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

1

import turtle
turtle.color("yellow")
turtle.bgcolor("red")
turtle.fillcolor("yellow")
turtle.begin_fill()
for i in range(5):
    turtle.forward(100)
    turtle.right(144)
turtle.end_fill()
2
import turtle 
for i in range(5):
    turtle.up()
    turtle.goto(0,-20*(i+1))
    turtle.down()
    turtle.circle(20*(i+1))
    turtle.write(10-i)
3
from turtle import *
color("red","yellow")
begin_fill()
while True:
    forward(200)
    left(175)
    if(abs(pos()))<1:
        break
 
 
end_fill()
4

import turtle

turtle.color("yellow")
turtle.bgcolor("red")
turtle.fillcolor("yellow")

def yuangoto(x,y):

turtle.up()
turtle.goto(x,y)
turtle.down()

yuangoto(-250,75)

turtle.begin_fill()

for i in range(5):
turtle.forward(100)
turtle.right(144)
turtle.end_fill()

yuangoto(-160,170)

turtle.begin_fill()

for i in range(5):
turtle.forward(50)
turtle.left(144)
turtle.end_fill()

yuangoto(-100,120)

turtle.begin_fill()

for i in range(5):
turtle.forward(50)
turtle.left(144)
turtle.end_fill()

yuangoto(-60,40)

turtle.begin_fill()

for i in range(5):
turtle.forward(50)
turtle.left(144)
turtle.end_fill()

yuangoto(-100,-40)

turtle.begin_fill()

for i in range(5):
turtle.forward(50)
turtle.left(144)
turtle.end_fill()

转载于:https://www.cnblogs.com/y550293904/p/7508856.html

你可能感兴趣的文章
[转帖] BIO与NIO、AIO的区别
查看>>
[转帖]哈佛结构和冯·诺依曼结构的区别
查看>>
手指滑动屏幕原理
查看>>
对于javascript里面闭包的理解
查看>>
LANMP安装总结
查看>>
因为没有打开的文档,所以这一命令无效==操作word问题
查看>>
C++获取Windows7 32位系统中所有进程名(类似于任务管理器中的进程)
查看>>
【19】235. Lowest Common Ancestor of a Binary Search Tree
查看>>
关闭vs的编译警告
查看>>
opencv载入,显示及保存图像
查看>>
C++回调机制实现(转)
查看>>
iOS基础篇 - UIWindow的简单介绍
查看>>
五十六. playbook基础 、 playbook进阶
查看>>
PICT测试工具的安装及使用
查看>>
ORA-28000: the account is locked-的解决办法
查看>>
只有ReflectionOnlyLoadFrom才可以拯救与GAC冲突的强命名程序集
查看>>
Day44:MySQL(单表的表记录的操作)
查看>>
家用路由器端口映射实战
查看>>
视频播放的基本原理
查看>>
webstorm vscode 常用设置
查看>>