码迷,mamicode.com
首页 >  
搜索关键字:turtle    ( 708个结果
多智能体仿真环境 NetLogo
http://ccl.northwestern.edu/netlogo/创建agentcreate-turtles 10动一动ask turtle 0 [forward 10 right 90 left 90 back 10]ask turtles [pen down] 或者 [pen up]...
分类:Web程序   时间:2015-12-07 11:58:39    阅读次数:175
Python学习笔记008_类_对象
# 对象 = 属性 + 方法>>> # Python中的类名约定以大写字母开始>>> # tt = Turtle() 这就是创建类实例的方法,其它语言用new ,它是不需要的>>> >>> # Python中的self就相当于Java中的this>>> # self ,一般都放在方法的第一个参数中....
分类:编程语言   时间:2015-11-15 13:31:01    阅读次数:175
Paint a leaf with python turtle
参考博文:http://biancheng.dnbcw.info/python/443280.htmlhttps://docs.python.org/2/library/turtle.html?highlight=turtle#turtle.speed效果图:code:import turtle a...
分类:编程语言   时间:2015-10-20 11:49:52    阅读次数:246
广大计算机徽标
# -*- coding: gb2312 -*-import randomimport turtlet=turtle.Pen()t.color('blue')sc=t.getscreen()sc.title("GZhu-Computer Science & Educational Software"...
分类:其他好文   时间:2015-09-22 18:32:13    阅读次数:223
绘制正弦、余弦曲线
python版本:3.4.3 使用模块:turtle math 代码如下: ?#-*-?charset:utf-8?-*- import?turtle import?math #绘制坐标轴,轴心(0,0) #绘制X轴 turtle.color("red") turtle.penup() turtle.goto(-200,0) t...
分类:其他好文   时间:2015-09-16 16:10:59    阅读次数:567
使用turtle模块绘制多边图形
python 版本:3.4.3 import 模块:turtle 使用turtle模块绘制多边图形,代码如下: ?#-*-?charset:utf-8?-*- import?turtle #设置画笔笔迹宽度 turtle.pensize(3) #画三边形 turtle.color("red") turtle....
分类:其他好文   时间:2015-09-07 17:00:07    阅读次数:396
用Python画出奥运五环
用海龟画图就是这么简单coordA=(-110,0,110,-55,55)coordB=(-25,-25,-25,-75,-75)cl=("red","blue","green","yellow","black")i=0from turtle import *pensize(5)for _ in r...
分类:编程语言   时间:2015-05-01 23:47:57    阅读次数:2480
用Python画出笑脸
from turtle import *penup()goto(0,-200)pendown()circle(200)penup()goto(-100,50)pendown()begin_fill()circle(17.5)end_fill()penup()goto(100,50)pendown()...
分类:编程语言   时间:2015-05-01 23:42:45    阅读次数:3212
Codeforces Beta Round #96 (Div. 1)
C. Logo Turtle题意:乌龟执行一个命令序列'T'转弯,'F'往前走,并改变其中n个命令,每个命令可以被改变多次,求乌龟最远的爬行距离关键字:[DP]解法:
分类:其他好文   时间:2015-04-28 01:41:00    阅读次数:152
UVALive - 6802 Turtle Graphics
题目链接 https://icpcarchive.ecs.baylor.edu/external/68/6802.pdf 图的标号和二维数组的不太一样,顺时针转90度就舒服多了 #include #include using namespace std; int vis[100][100]; int start_x, start_y; int final_x, final_y; int di...
分类:其他好文   时间:2015-04-24 09:06:08    阅读次数:129
708条   上一页 1 ... 68 69 70 71 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!