博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Python 五角星
阅读量:4941 次
发布时间:2019-06-11

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

import turtle# from turtle import *turtle.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()def drawfive(r):    turtle.begin_fill()    for i in range(5):        turtle.forward(r)        turtle.left(-144)    turtle.end_fill()mygoto(-230, 100)drawfive(100)for i in range(4):    x = 1    if i in [0, 3]:        x = 0    mygoto(-120 + x * 50, 150 - i * 40)    turtle.left(15 - i * 15)    drawfive(30)mygoto(0, 0)turtle.hideturtle()turtle.done()

代码截图:

转载于:https://www.cnblogs.com/224yang/p/8610259.html

你可能感兴趣的文章
【NOIP2015】斗地主
查看>>
uva 10537 Toll! Revisited(优先队列优化dijstra及变形)
查看>>
MySQL对时间的处理总结
查看>>
笔记四:python乱码深度剖析二
查看>>
《PHP程序员面试笔试宝典》——如何回答技术性的问题?
查看>>
【转载】Amit’s A star Page 中译文
查看>>
注册谷歌账号并验证时显示号码无法用于验证的问题
查看>>
Hive 变量和属性
查看>>
Python安装第三方库 xlrd 和 xlwt 。处理Excel表格
查看>>
课后作业-阅读任务-阅读提问-3
查看>>
Asp.Net Core 中利用QuartzHostedService 实现 Quartz 注入依赖 (DI)
查看>>
细说sqlserver索引及SQL性能优化原则
查看>>
一般数据库增量数据处理和数据仓库增量数据处理的几种策略
查看>>
centos6.5适用的国内yum源:网易、搜狐
查看>>
视频直播技术(三):低延时直播经验总结
查看>>
Application failed to start because it could not find or load the QT platform plugin “windows”
查看>>
python合并多表或两表数据
查看>>
第一个python作业题目以及代码
查看>>
Windows Azure 社区新闻综述(#71 版)
查看>>
Windows XP 的最高版本 .net framework 安装
查看>>