turtle:海龟(海龟库) Turtle库是Python语言中一个很流行的绘制图像的函数库 使用之前需要导入库:import turtle ? turtle.setup(width,height,startx,starty) -setup() 设置窗体的位置和大小 相对于桌面的起始点的坐标以及窗口 ...
分类:
编程语言 时间:
2018-03-31 20:41:31
阅读次数:
7955
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
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