资源简介
教孩子学编程源码
代码片段和文件信息
# colorspiral.py
“““A module for drawing colorful spirals of up to 6 sides“““
import turtle
def cspiral(sides=6 size=360 x=0 y=0):
“““Draws a colorful spiral on a black background.
Arguments:
sides -- the number of sides in the spiral (default 6)
size -- the length of the last side (default 360)
x y -- the location of the spiral from the center of the screen
“““
t=turtle.Pen()
t.speed(0)
t.penup()
t.setpos(xy)
t.pendown()
turtle.bgcolor(“black“)
colors=[“red“ “yellow“ “blue“ “orange“ “green“ “purple“]
for n in range(size):
t.pencolor(colors[n%sides])
t.forward(n * 3/sides + n)
t.left(360/sides + 1)
t.width(n*sides/100)
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2015-04-12 15:54 code\appendixC\
文件 750 2015-04-12 15:53 code\appendixC\colorspiral.py
文件 102 2015-04-12 15:53 code\appendixC\MultiSpiral.py
文件 257 2015-04-12 15:53 code\appendixC\SuperSpiral.py
目录 0 2015-04-12 15:56 code\ch01\
文件 245 2015-04-12 13:54 code\ch01\Challenge1_MadLib.py
文件 285 2015-03-05 18:37 code\ch01\Challenge2_MadLib2.py
文件 265 2013-12-26 19:33 code\ch01\NiceHexSpiral.py
文件 76 2015-04-12 13:54 code\ch01\YourName.py
目录 0 2015-04-12 15:59 code\ch02\
文件 400 2015-02-19 22:24 code\ch02\Challenge1_ColorSpiral10.py
文件 413 2014-11-01 12:19 code\ch02\Challenge2_ColorSpiralChoice.py
文件 305 2014-11-01 12:08 code\ch02\Challenge3_RubberBandBall.py
文件 113 2015-04-12 13:55 code\ch02\CircleSpiral1.py
文件 187 2015-04-12 13:57 code\ch02\ColorCircleSpiral.py
文件 356 2015-04-12 13:57 code\ch02\ColorSpiral.py
文件 171 2015-04-12 13:56 code\ch02\ColorSquareSpiral.py
文件 190 2015-02-08 12:50 code\ch02\ColorSquareSpiral2.py
文件 111 2013-12-27 10:45 code\ch02\SquareSpiral1.py
文件 110 2015-04-12 13:55 code\ch02\SquareSpiral2.py
文件 110 2015-04-12 13:56 code\ch02\SquareSpiral3.py
目录 0 2015-04-12 15:59 code\ch03\
文件 829 2015-04-12 13:58 code\ch03\AtlantaPizza.py
文件 874 2015-04-02 17:10 code\ch03\Challenge1_CircleSpiralInput.py
文件 1045 2015-02-01 16:53 code\ch03\Challenge2_ColorMeSpiralled.py
文件 874 2015-04-12 13:59 code\ch03\ColorSpiralInput.py
文件 485 2015-04-12 14:00 code\ch03\MathHomework.py
文件 266 2015-04-12 13:59 code\ch03\SayMyName.py
文件 837 2015-04-12 13:59 code\ch03\SpiralMyName.py
文件 302 2015-04-12 13:58 code\ch03\ThankYou.py
目录 0 2015-04-12 16:01 code\ch04\
............此处省略83个文件信息
- 上一篇:labelImg-1.8.1(图片标注工具)
- 下一篇:深度学习(SPOT-RNA)
相关资源
- python学生管理系统源码(控制台)
- 《Python 编程:从入门到实践》所有代
- python编程:入门到实践 源代码
- python编程:入门到实践练习答案
- 自动截屏工具(python源码)
- python学生管理器源码
- 小说阅读项目源码(附数据库脚本)
- 美多商城源码(Python+Diango+Vue)
- 超级玛丽 python源码
- 玩我的世界学python编程源码
- 中山大学-自然语言处理-中文分词项目
- python爬虫爬取旅游信息(附源码,c
- 爬取上百张妹子图源码可直接运行
- python 井字棋 游戏源码
- Python源码剖析.pdf59505
- Python 串口工具源码+.exe文件
- python源码制作whl文件.rar
- SIFT源码python实现
- python网络爬虫获取景点信息源码
- 电力窃漏电用户自动识别 源码
- 3D打印机控制软件Cura源码
- python爬取维基百科程序语言消息盒(
- python坦克大战分步骤源码及素材
- Python网络编程 3版 高清扫描版 完整中
- 使用python编写的打飞机游戏源码
- python编程从入门到实践的案例和动手
- 50G金融资料包python源码包
- python_web实战-源码
- Python灰帽子-黑客与逆向工程师的Pyt
- Python黑帽子 黑客与渗透测试编程之道
评论
共有 条评论