码迷,mamicode.com
首页 >  
搜索关键字:turtle    ( 708个结果
字符串练习
字符串练习: http://news.gzcc.cn/html/2017/xiaoyuanxinwen_1027/8443.html 取得校园新闻的编号 https://docs.python.org/3/library/turtle.html 产生python文档的网址 http://news.g ...
分类:其他好文   时间:2018-03-20 22:58:25    阅读次数:256
字符串练习
字符串练习: http://news.gzcc.cn/html/2017/xiaoyuanxinwen_1027/8443.html 取得校园新闻的编号 https://docs.python.org/3/library/turtle.html 产生python文档的网址 http://news.g ...
分类:其他好文   时间:2018-03-20 21:40:00    阅读次数:196
五角星
import turtle turtle.setup(600, 400, 0, 0) turtle.bgcolor('red') turtle.color('yellow') turtle.fillcolor('yellow') def mygoto(x, y): turtle.up() turtl... ...
分类:其他好文   时间:2018-03-20 18:19:07    阅读次数:161
python画国旗
import turtle def mygoto(x, y): turtle.up() turtle.goto(x, y) turtle.down() def drawwwu(r): turtle.begin_fill() for i in range(5): turtle.forward(r) t... ...
分类:编程语言   时间:2018-03-20 18:16:43    阅读次数:295
Python基础综合练习
import turtle def mygoto(x, y): turtle.up() turtle.goto(x,y) turtle.down() def drawBigStar(x): turtle.begin_fill() for i in range(5): turtle.forward(x... ...
分类:编程语言   时间:2018-03-20 18:11:06    阅读次数:189
turtle画五星红旗
import turtle def goto(x,y): turtle.up(); turtle.goto(x,y); turtle.down; def drawxwjx(x): turtle.begin_fill() for i in range(5): turtle.forward(x) tur... ...
分类:其他好文   时间:2018-03-20 18:04:15    阅读次数:174
python学习—turtle库练习
# coding=utf-8 import turtle # 画五角星 def drawStar(x): turtle.begin_fill() for i in range(5): turtle.forward(x) turtle.right(144) turtle.end_fill() # 转移... ...
分类:编程语言   时间:2018-03-20 16:26:19    阅读次数:188
Python基础综合练习
import turtle def mygoto(x, y): turtle.up() turtle.goto(x, y) turtle.down() def drawstar(x): turtle.begin_fill() for i in range(5): turtle.forward(x) ... ...
分类:编程语言   时间:2018-03-20 15:53:03    阅读次数:179
Python基础综合练习
import turtle turtle.setup(600, 400, 0, 00) turtle.color('yellow') turtle.bgcolor('red') turtle.fillcolor('yellow') turtle.speed(6) def mygoto(x, y): ... ...
分类:编程语言   时间:2018-03-19 13:40:34    阅读次数:225
Python基础综合练习
import turtle def drawFivePointedStar(x,y,width,degree): turtle.up() turtle.goto(x,y) turtle.down() turtle.begin_fill() turtle.setheading(degree) for ... ...
分类:编程语言   时间:2018-03-19 13:39:25    阅读次数:188
708条   上一页 1 ... 43 44 45 46 47 ... 71 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!