import turtle turtle.pensize(4)turtle.pencolor("black") turtle.fillcolor("red")turtle.begin_fill() for _ in range(5): turtle.forward(150) turtle.right ...
分类:
编程语言 时间:
2020-03-14 22:06:21
阅读次数:
70
import turtle turtle.setup(650,350,200,200)turtle.penup()turtle.pensize(1)turtle.pencolor("red")turtle.fillcolor("green")turtle.begin_fill()turtle.set ...
分类:
其他好文 时间:
2020-03-14 21:47:58
阅读次数:
68
1 from turtle import* 2 fd(-150) 3 color("black","red") 4 begin_fill() 5 for i in range(5): 6 fd(300) 7 right(144) 8 end_fill() 9 hideturtle() ...
分类:
其他好文 时间:
2020-03-14 20:15:10
阅读次数:
57
五、画太极图 描述 利用turtle库画以下太极图形状. 代码如下: #绘制太极图 from turtle import * setup(800,800,100,100) #绘制左半部分 fillcolor('#FFFFFF') begin_fill() circle(100,180) circle ...
分类:
编程语言 时间:
2020-03-14 17:06:48
阅读次数:
120
1 import turtle 2 import time 3 4 turtle.pensize(1) 5 turtle.pencolor("black") #画笔黑色 6 turtle.fillcolor("red") #内部填充红色 7 #绘制五角星# 8 turtle.begin_fill() ...
分类:
其他好文 时间:
2020-03-14 15:01:28
阅读次数:
60
import turtle turtle.pensize(4) turtle.pencolor("yellow") turtle.fillcolor("red") turtle.begin_fill() for _ in range(5): turtle.forward(200) turtle.ri ...
分类:
其他好文 时间:
2020-03-14 12:44:36
阅读次数:
74
1.五角星 import turtle turtle.fillcolor("red") turtle.begin_fill() count = 1 while count <= 5: turtle.forward(100) turtle.right(144) count += 1 turtle.en ...
分类:
编程语言 时间:
2020-03-14 10:52:48
阅读次数:
53
import turtleimport time turtle.pensize(5)turtle.pencolor("red")turtle.fillcolor("red") turtle.begin_fill() for _ in range(5): turtle.forward(200) tur ...
分类:
其他好文 时间:
2020-03-14 00:46:18
阅读次数:
48
import turtle L=50 N=6 jiaodu=180-360/(N) tl=turtle.Turtle() #tl.speed(0)tl.screen.delay(0) def f1(): tl.fillcolor("yellow") tl.begin_fill() for i in ...
分类:
其他好文 时间:
2020-03-14 00:45:44
阅读次数:
89
[toc] 新建一个UIWidgetDemo来测试Android中的控件和布局。 控件 TextView android中所有控件都有android:layout_width和android:layout_height这两个属性。这两个属性的可选值有3个:match_parent,fill_pare ...
分类:
移动开发 时间:
2020-03-13 21:02:08
阅读次数:
68