博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python
阅读量:6825 次
发布时间:2019-06-26

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

# -*- coding:UTF-8 -*-import turtledef newgoto(x, y):    turtle.up()    turtle.goto(x, y)    turtle.down()def draw(x):    turtle.begin_fill()    for i in  range(5):        turtle.forward(x)        turtle.right(144)    turtle.end_fill()turtle.setup(600, 400, 0, 0)turtle.color("yellow")turtle.bgcolor("red")turtle.fillcolor("yellow")newgoto(-250, 75)draw(100)for i in range(4):    n=1    if i in [0,3]:        n=0    newgoto(-100+n*50, 150-i*60)    turtle.left(15-i*30)    n=n+1    draw(50)turtle.hide()turtle.done()

 

转载于:https://www.cnblogs.com/0056a/p/8599986.html

你可能感兴趣的文章
屏蔽storm ui的kill功能
查看>>
我的友情链接
查看>>
Oracle Decode函数的使用
查看>>
MSF学习笔记
查看>>
经典脚本案例--check memory
查看>>
20.31 expect脚本同步文件;20.32 expect脚本指定host和要同步的文件;20.33 构建文件分发系统;20.34...
查看>>
CentOS单用户与救援模式
查看>>
postfix 源码centos7上搭建及错误提示---亲测
查看>>
【Redis篇】Redis集群安装与初始
查看>>
jquery基础
查看>>
C# 集合已修改;可能无法执行枚举操作
查看>>
FSM Code Generator
查看>>
JDBC学习笔记——事务、存储过程以及批量处理
查看>>
JVM内存结构
查看>>
Java 锁
查看>>
7、索引在什么情况下遵循最左前缀的规则?
查看>>
c#中委托与事件
查看>>
mysql数据库备份之主从同步配置
查看>>
angularJs(1)指令篇
查看>>
自定义Xadmin
查看>>