码迷,mamicode.com
首页 >  
搜索关键字:turtle    ( 708个结果
Python-turtle库知识小结(python绘图工具)
turtle:海龟(海龟库) Turtle库是Python语言中一个很流行的绘制图像的函数库 使用之前需要导入库:import turtle ? turtle.setup(width,height,startx,starty) -setup() 设置窗体的位置和大小 相对于桌面的起始点的坐标以及窗口 ...
分类:编程语言   时间:2018-03-31 20:41:31    阅读次数:7955
P57 2.9蟒蛇
import turtle turtle.setup(800,800,100,100) turtle.penup() turtle.fd(-250) turtle.pendown() turtle.pensize(10) turtle.pencolor("red") turtle.seth(-40)... ...
分类:其他好文   时间:2018-03-31 20:34:15    阅读次数:160
P57 2.7六角形
import turtle turtle.setup(800,800,150,150) turtle.pensize(8) turtle.pencolor("red") turtle.penup() turtle.goto(-50,-100) turtle.pendown() turtle.seth... ...
分类:其他好文   时间:2018-03-31 19:34:15    阅读次数:154
第一次作业
蟒蛇from turtle import * setup(800,800,200,200) penup() fd(-10) pendown() pensize(20) pencolor("blue") seth(10) colors=["blue","green","yellow","red"] f... ...
分类:其他好文   时间:2018-03-28 20:21:27    阅读次数:121
第一次作业
#2-5 from turtle import * setup(650,600,200,200) for i in range(3): fd(100) left(-120) left(60) fd(100) for i in range(3): left(-120) fd(200) #2-6 fro... ...
分类:其他好文   时间:2018-03-22 19:20:50    阅读次数:183
第一次作业
25题代码:import turtle turtle.setup(700,500,200,200) turtle.fd(150) turtle.seth(120) turtle.fd(150) turtle.seth(-120) turtle.fd(300) turtle.seth(0) turtl... ...
分类:其他好文   时间:2018-03-22 19:19:58    阅读次数:178
第一次作业
import turtle as t t.setup(600, 600, None,None) t.pu() t.fd(-120) t.pensize(5) t.width(5) t.pencolor("darkgreen") t.pd() t.fd(250) t.seth(120) t.penco... ...
分类:其他好文   时间:2018-03-22 19:13:43    阅读次数:188
大数据第四次作业
(1) addr='http://news.gzcc.cn/html/2017/xiaoyuanxinwen_1027/8443.html'print(addr[-14:-5]) (2) addr1='https://docs.python.org/3/library/'addr2='turtle' ...
分类:其他好文   时间:2018-03-21 21:10:39    阅读次数:165
字符串、组合数据类型练习
一、字符串练习: 1.http://news.gzcc.cn/html/2017/xiaoyuanxinwen_1027/8443.html 取得校园新闻的编号 2.https://docs.python.org/3/library/turtle.html 产生python文档的网址 3.http: ...
分类:其他好文   时间:2018-03-21 21:08:21    阅读次数:206
字符串练习
1.字符串练习: http://news.gzcc.cn/html/2017/xiaoyuanxinwen_1027/8443.html 取得校园新闻的编号 https://docs.python.org/3/library/turtle.html 产生python文档的网址 http://news ...
分类:其他好文   时间:2018-03-21 17:27:56    阅读次数:158
708条   上一页 1 ... 42 43 44 45 46 ... 71 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!